Hello, I know this is a small block of code, but I wanted to know if this is a good way of kicking accounts that are not a week old, really just checking if I should use return later on there will datastore stuff under this.
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(Player)
if Player.AccountAge <= 7 then
Player:Kick('Account must be a week or older!')
return
end
end)```