RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a local script for a ui that only makes it visible if the player is stage 210"
-- local script local Players = game:GetService("Players") local player = Players.LocalPlayer local stage = player.leaderstats.Stage.Value local gui = script.Parent gui.Visible = false player.leaderstats.Stage:GetPropertyChangedSignal("Value"):Connect(function() if player.leaderstats.Stage.Value >= 210 then gui.Visible = true else gui.Visible = false end end)