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 for UI visibility local Player = game:GetService("Players").LocalPlayer local stage = 210 local UI = script.Parent local function checkStage() if Player.leaderstats.Stage.Value >= stage then UI.Visible = true else UI.Visible = false end end Player.leaderstats.Stage:GetPropertyChangedSignal("Value"):Connect(checkStage) checkStage()