Advertisement
Primal_Dev

Status Script

Oct 3rd, 2022
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. local Status = game.ReplicatedStorage.Values:WaitForChild("Status")
  2. local Label = script.Parent:WaitForChild("StatusLabel")
  3.  
  4. Status:GetPropertyChangedSignal("Value"):Connect(function()
  5.     Label.Text = Status.Value
  6. end)å
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement