Advertisement
jassm11

Untitled

Jul 3rd, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function OnEntered(Player)
  2. wait(1)
  3. if Player.AccountAge <= 10 then -- Age measured in days
  4. Player:Destroy()
  5. h = Instance.new("Hint")
  6. h.Parent = game.Workspace
  7. h.Text = Player.jassm11" tried to join under the age limit"
  8. wait(5)
  9. h:Destroy()
  10. end
  11. end
  12.  
  13. game.Players.PlayerAdded:connect(OnEntered)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement