Hi there. I am currently trying to make a game and my scripts will not work for some reason! Take a look.
while true do local player = game.Players.LocalPlayer while wait() do if workspace.missionnum.Value == 1 then workspace.MISSIONS.RustyJohn.start["Text Show on touch"].Disabled = false workspace.MISSIONS.RustyJohn.start.Transparency = 0.5 end end end
By the way, 'missionnum' is a value, and when you complete the tutorial the value goes up to 1. I don't know why, but the script does NOT detect the value being 1 and does not enable the marker or do anything I tell it to.
Try this bro!
while true do local player = game.Players.LocalPlayer while wait() do if workspace:WaitForChild("missionnum").Value == 1 then workspace:WaitForChild("MISSIONS"):WaitForChild("RustyJohn"):WaitForChild("Start")["Text Show on touch"].Disabled = false workspace:WaitForChild("MISSIONS"):WaitForChild("RustyJohn"):WaitForChild("Start").Transparency = 0.5 end end end