StoryProductions

Bot Kicker Script [Roblox]

Aug 1st, 2020 (edited)
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. local minimumAge = 3
  2. local kickMessage = "Your account must be at least "..minimumAge.." days old to play this game."
  3.  
  4. game.Players.PlayerAdded:Connect(function(player)
  5. if player.AccountAge < minimumAge then
  6. player:Kick(kickMessage)
  7. end
  8. end)
Add Comment
Please, Sign In to add comment