RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make an expiration to antartica."
-- server script local expirationTime = 60 -- in seconds game.Players.PlayerAdded:Connect(function(player) local character = player.Character local antartica = game.Workspace.Antartica character.HumanoidRootPart.CFrame = antartica.CFrame spawn(function() wait(expirationTime) character.HumanoidRootPart.CFrame = game.Workspace.Spawn.CFrame end) end)