RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that bans the player name "Justvuse" from the game when I type /ban"
-- server script local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) if player.Name == "Justvuse" then player:Kick("You have been banned from the game") end end) game.Players.PlayerAdded:Connect(function(player) if player.Name == "Justvuse" then player:Kick("You have been banned from the game") end end) game.ReplicatedStorage.BanCommand.OnServerEvent:Connect(function(player, targetName) if targetName == "Justvuse" then local targetPlayer = Players:FindFirstChild(targetName) if targetPlayer then targetPlayer:Kick("You have been banned from the game") end end end)