RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a rejoin command and tell me where to put the code"
-- put this code in CommandScript under ServerScriptService local Commands = {} Commands.rejoin = function(player) local ts = game:GetService("TeleportService") ts:Teleport(game.PlaceId, player) end game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) local command, arg = msg:match("!(%w+)%s*(.*)") if command and Commands[command] then Commands[command](player, arg) end end) end)