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
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