RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when players join the game it will make them rejoin"
-- server script local Players = game:GetService("Players") local function onPlayerAdded(player) wait(1) player:Kick("Rejoining...") end Players.PlayerAdded:Connect(onPlayerAdded)