RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that force spawns anyone to the script.parent when they join. once each player"
-- server script local spawnLocation = script.Parent game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character:WaitForChild('HumanoidRootPart').CFrame = spawnLocation.CFrame end) end)