I’m working with a Level system. I wanted the XP value to drop to Zero when the Level Value Changes at all. I tried this script, but it gave me this error:
local Player = game.Players.LocalPlayer
local Level = Player.Stats.Level
local XP = Player.Stats.Experience
Level.Value.Changed:Connect(function()
XP.Value = 0
end)
Change it to Level:GetPropertyChangedSignal("Value"):Connect(function()
With the Changed event, as well as ProperyChangedSignal, it must be called on the object, not the value. The error tells you this with attempt to index changed with number