Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a script for a players's kick? (Please write the script in full)

Asked by 1 year ago
Edited 1 year ago

Thank you so much if you help! 09.12.22

0
simply do Player:Kick() T3_MasterGamer 2189 — 1y

1 answer

Log in to vote
1
Answered by 1 year ago
game.Players.PlayerAdded:Connect(function(plr) -- gets player
    plr:Kick() -- kicks the player (if you want to put a custom kick message then put 2 " inside the () like this plr:Kick("Message"))
end)
Ad

Answer this question