Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why wont the Text Button become visible? [SOLVED]

Asked by 1 year ago
Edited 1 year ago
local checkpoints = game.Players.LocalPlayer:WaitForChild("Checkpoints")
Unlocked200 = checkpoints.Unlocked200
local M200 = script.Parent

while true do
    wait(0.01)
    if Unlocked200 == true then
        M200.Visible = true
    end
end

Unlocked200 is a bool value, even when the value is true, the Button is still invisible.

2
change Unlocked200 == true to Unlocked200.Value == true T3_MasterGamer 2189 — 1y
0
also, according to me shouldnt use numbers in your names HKG_7551 -2 — 1y
0
says by HKG_7551 Xapelize 2658 — 1y

1 answer

Log in to vote
1
Answered by 1 year ago

Don't put numbers for your names can be the first issue second is that you forgot .Value at the end of Unlocked200 it needs to be Unlocked200.Value

0
thank you for helping zestymeatball 2 — 1y
0
There is NO problem in using numbers in names. T3_MasterGamer 2189 — 1y
0
It will still work regardless if name has numbers or not T3_MasterGamer 2189 — 1y
0
you should've credited me :< T3_MasterGamer 2189 — 1y
View all comments (2 more)
0
No problem 666_brithday 103 — 1y
0
I didn't notice you commented on the post 666_brithday 103 — 1y
Ad

Answer this question