Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make it when player tp the chair dont go off?

Asked by 2 years ago

So basiclly when i follow roblox teleport tutorial when i tp the Chair Always tp with it how do i fix it? Like show a code where the chair dont dissapear Thanks if you help i guess

1 answer

Log in to vote
0
Answered by
Neatwyy 123
2 years ago

You can easily fix this by making the Humanoid get up from sitting, then teleporting it.

local Character = game.Workspace -- // Set to the character path
local Humanoid = Character.Humanoid

Humanoid.Sit = false
Character:MoveTo(Vector3.new(0, 0, 0)) -- // Change the position to the required one
Ad

Answer this question