RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a gui that shows up every time a player levels up"
-- LocalScript in StarterGui local player = game.Players.LocalPlayer local levelUpGui = script.Parent.LevelUpGui levelUpGui.Visible = false local function onLevelUp() levelUpGui.Visible = true wait(3) levelUpGui.Visible = false end player.leaderstats.Level.Changed:Connect(function(newValue, oldValue) if newValue > oldValue then onLevelUp() end end)