How to make that if the player is on top of a floor, the player moves to a certain direction?

I’m honestly looking for a common script; this script is in many games, because basically when you step on a certain floor, it starts to move you to the other end of the floor

Are you talking about a moving part?

mmm, I’m looking for the script of a floor that, well, if you’re on that floor, your character starts to move

So is it like a conveyor belt?

Yes, I didn’t remember what it was called and well I don’t know how it’s done

You can put this script in your part

local part = script.Parent

while true do
	task.wait()
	part.Velocity = part.CFrame.LookVector * 10 --You can change speed
end

Also make sure that the part is anchored

3 Likes