So, I had some models done for the lobby, but I feel like they looked a little crappy, so I'm deciding to remodel everything because yk, gotta make everything look as good as possible. This will make the game take longer to release, since I might spend hours on some models, and I'm a pretty terrible builder/modeler. That's all I have for now, here's a little code snippet for a Bot Kicker script in Lua
local minimumAge = 3
local kickMessage = "Your account must be at least " .. minimumAge .. " days old to play."
local function botKicker(player)
if player.AccountAge < minimumAge then
player:Kick(kickMessage)
else --Testing purposes
print("Account is old enough to play :D")
end
game.Players.PlayerAdded:Connect(botKicker)
--Put this in a Script in ServerScriptService
No image for this post since I restarted everything in the project, sorry about that :[
3 comments