I'm making this to where it kicks the player when they're not in that certain age. It's not kicking the player, how come?
1 | function OnEntered(Player) |
2 | if Player.AccountAge < = 20 then |
3 | local Player = game.Players:GetPlayerFromCharacter(Player.Parent) |
4 | Player:Kick( "Your account must be 20 days old to play." ) |
5 | end |
6 | end |
7 |
8 | game.Players.PlayerAdded:connect(OnEntered) |
SoftlockedUnderZero is right. You should only do:
1 | function OnEntered(Player) |
2 | if Player.AccountAge < 20 then |
3 | Player:Kick( "Your account must be 20 days old to play." ) |
4 | end |
5 | end |
6 |
7 | game.Players.PlayerAdded:Connect( function (OnEntered) |
Hope this helps!
Why line 3? It doesn't make sense. What's your intention with line 3? Only the Player Instance has the kick function, not the model.
I suggest you remove line 3, because the player variable is already given to you.