RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Script a button that only shows to new players"
-- Local script within the button local button = script.Parent local Player = game:GetService("Players").LocalPlayer local function isNewPlayer() local accountAge = Player.AccountAge if accountAge <= 7 then -- Change this number to define a new player button.Visible = true else button.Visible = false end end isNewPlayer()