Here is my program but it won't update no matter what!
while true do print(game.Workspace.Activate.Value) wait(1) end
if game.Workspace.Activate.Value
changes then it would still print the original number that the game started out with. It will not update. I change the value using another script.
Try something like this:
local activate = game.Workspace.Activate.Value while true do activate = game.Workspace.Activate.Value print(tostring(activate)) --> for safety wait(1) end