I need a script help kick player under 30 days since they sign up in order to prevent scammer and Bots. Just like how Steve's One Piece did in the game>
put this in a server script:
local MIN_ACCOUNT_AGE = 30; game.Players.PlayerAdded:Connect(function(player) if(player.AccountAge < MIN_ACCOUNT_AGE) then player:Kick() end end)
Put this in a Local Script:
if game.Players.LocalPlayer.AccountAge < 30 then game.Players.LocalPlayer:Kick('Accout too young!') end