So, basically using either the “to” or “bring” command while the target is sitting will end with the seat coming with the player. I tried making the player jump before teleporting, but it didn’t work. I’m not an expert scripter so any insight would be nice.
commands.to = function(sender, arguements)
if sender.Name == "owner1" or sender.Name == "owner2" or sender.Name == "admin1" then
local playerToTeleport = sender
local PlayerToTeleportTo = arguements[1]
if playerToTeleport then
local plrToTp = findPlayer(PlayerToTeleportTo)
if plrToTp then
sender.Character.Humanoid.Jump = true
wait()
playerToTeleport.Character.HumanoidRootPart.CFrame = plrToTp.Character.HumanoidRootPart.CFrame
end
end
end
end