Advertisement
Guest User

Roblox age script (by xqye)

a guest
Feb 19th, 2018
6,574
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 1 0
  1. local MinAge = 30 -- In Days
  2.  
  3. game.Players.PlayerAdded:Connect(function(plr)
  4. plr.CharacterAdded:Connect(function()
  5. if plr.AccountAge < MinAge then
  6. plr:Kick("Account too young.")
  7. end
  8. end)
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement