Script won't work with the "Changed" Event

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:

This is how the folder’s are set up:

image

Script:

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

1 Like

THANK YOU SO MUCH. It worked!!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.