I’ve been having any issue with this for the past 2 hours? The PassID and Objects print the same values (they’re both NumberValues) The problem here is that the code won’t get past the 3rd line although it is true?
local PassID = v:WaitForChild("Configuration"):FindFirstChild("PassID").Value
print(PassID.." "..Object) ---// Prints literally the same values, for example "2..2"
if PassID == Object then
print("YES THIS WORKS") --// This does not print out
v.Visible = true
else
v.Visible = false
end