Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local minimumAge = 3
- local kickMessage = "Your account must be at least "..minimumAge.." days old to play this game."
- game.Players.PlayerAdded:Connect(function(player)
- if player.AccountAge < minimumAge then
- player:Kick(kickMessage)
- end
- end)
Add Comment
Please, Sign In to add comment