Ok i made the button with a script that teleports you to the obby. So i need to make button on part what changing part you teleport on. Or you touching part and you now teleporting on this part when start obby button was clicked. Something like that.
Theres a button script:
local checkpoint = game.Workspace.ObbyCheck script.Parent.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer player.Character.HumanoidRootPart.CFrame = CFrame.new(checkpoint.Position.X,checkpoint.Position.Y + 1,checkpoint.Position.Z) end)