
How to create a moving part - Scripting Support - Roblox
Aug 6, 2021 · I want to create a moving part for my obby game and I can’t find any tutorials to fit my need. I want my part to be a small square that moves horizontally back and forth a certain distance (the player jumps on when its close to them, and it takes them). I don’t even know where to begin to start for this, any ideas?
How to move a part position - Scripting Support - Roblox
Jan 19, 2022 · I’m trying to make a part move from different position every time remote event is fired. The problem is I don’t know how to move it. local Part = game.Workspace:FindFirstChild("Part") local RE = game.ReplicatedStorage:WaitForChild("RemoteEvent") local YValue = (-10) RE.OnServerEvent:Connect(function() Part.Position = Vector.new(0, YValue, 0) end) Will this …
How to make parts move? - Scripting Support - Developer Forum
Dec 7, 2019 · Greeting everyone! I have a question to ask. I’m very new to scripting, and I really need to find out how to script so I can be advanced and make the games that I need to make. If you have suggestions on where to start scripting and where I can learn Also, please do not suggest outdated channels, or channels that doesn’t explain the script, they just type it and call out the words and put ...
How can i make a part move locally that uses body position to
Dec 15, 2021 · I’m trying to make a platformer in which I need moving parts that can move the player with them but I also need it to be done locally, to reduce lag. I have a local script that uses body position to move the part and also move the player with it but the body position doesn’t work as it would in a normal script, I put the local script in starterplayerscripts. how would I …
How can I move a part towards the player - Scripting Support
Sep 24, 2021 · I want to make a part move towards and look at the player. Ive got everything except the movement and looking at the player. Ive tried using CFrame.LookAt and just moving the part forward but that’s inefficient and buggy. Any help is appreciated
How can I move a Models Position with code? - Roblox
Jun 4, 2020 · Its kinda in the title but what I want to do is clone a model filled with parts (I will need to access each part of the model) and changes its position. (the model’s position). There seems not to be a position property on a model even when I …
How do I make a player move with a part? - Scripting Support
Jan 1, 2023 · I have a model that rotates around a part at a certain distance (shown in the video), and I need a way to have any players standing on the model to not fall off while it’s moving. I’m pretty sure this would’ve been previously achievable with BodyPosition, but that’s deprecated. Are there any objects in Studio that work similarly to BodyPosition (in order to achieve this effect)? I’ve ...
Need help with smooth movement - Scripting Support - Roblox
Apr 3, 2020 · so i made a basic code to move a part upwards, but its not as smooth as i would want it to be, i used while true do script.Parent.Position = Vector3.new(0,10,0) wait(0.5) script.Parent.Position = Vector3.new(0,10.1,0) wait(0.5) very simple, but its not smooth, im trying to find a code that can made it smoother
What do i need to make a part move? - Scripting Support - Roblox
Apr 22, 2019 · PartA.CFrame = Part.CFrame * CFrame.new(0, 0, 10) This is an another example of a part being moved, make sure you define your part first. Positioning Positioning isn’t the best way to move an object, since it doesn’t move the object …
Moving a part into a specific location - Scripting Support - Roblox
Jan 22, 2023 · Alright, how would I move a part into a specific location? That’s all. Example: I want Part A to move whatever direction Part B is, which is 10 studs away. I tried to work with BodyVelocity, but I don’t know how(?) And I wouldn’t use tween because, I want it to be serversided, to avoid delays from client to server and vice versa, and also lag. To save you time from thinking of a code, I ...
- Some results have been removed