I just want to make a part move from A - B… But no matter what settings I give the BodyPosition and BodyGyro, nothing works.
Problem 1. Part will always drop, its Y axis should NEVER change.
Problem 2. Impossible get a smooth movement between 2 points. It’s either ridiculously fast, or way too slow. Impossible to get a middle ground.
I’ve looked through every single free model, watched every tutorial imaginable on this subject. None of them produce what I am after. I’ve copied the EXACT values Roblox uses in this tutorial
And the 2 videos above are my results.
-- Setup movement platforms
for _, move in pairs(CollectionService:GetTagged("Move")) do
local Platform = move.Platform
local BodyPostion = Platform.BodyPosition
local Start = move.Start
local Finish = move.Finish
BodyPostion.Position = Start.Position
coroutine.wrap(function()
while true do
BodyPostion.Position = Finish.Position
wait(5)
BodyPostion.Position = Start.Position
wait(5)
end
end)()
end
Part needs to affect the player. Using tween service causes the part to move, but characters standing on top of it are not affected and will stay in place
I did, I read through the entire thing. It doesn’t answer what I’m asking. The problem is what settings to set my BodyPosition values to, not how to tween it