Create a ridable moving platform using scripts

local tweenService = game:GetService("TweenService")
local ulap = script.Parent

local info = TweenInfo.new(
	1, -- Length (seconds)
	Enum.EasingStyle.Linear,
	Enum.EasingDirection.Out,
	9999999999, -- times repeared
	true, -- reverse
	0 -- delay
	
)

local Goals = 
{
	Position = Vector3.new(-105.074, 9.673, -198.575);
}

local moveUlapTween =  tweenService:Create(ulap, info, Goals)
wait(1)
moveUlapTween:Play()

So i made a tween service that moves a part back and fort but it doesn’t carry you when it moves i wonder who could i do that using scripts

1 Like

There is article on the developer hub about spinning platforms that carries you.

You could use body movers like BodyPosition | Documentation - Roblox Creator Hub

I would highly recommend the link that @Dolphin_Worm gave; I’ve used it before.

Also…

Just a quick note:

If you wanted to make the tween repeat forever, just say -1 as the repeat count. When it’s negative, the tween will loop indefinitely.

1 Like