of     1   

DrAquafresh
#182931907Wednesday, February 03, 2016 2:35 PM GMT

--DrAquafresh -> GUI leveling script-- function onXpGain() print("Xp gain called") xp = script.Parent.Frame.FrameXP.ActualXp.EXP level = script.Parent.Frame.Level.TextLabel.ActualLvl if xp.Value >= level.Value * 10 then level.Value = level.Value + 1 xp.Value = 0 end end function onLevelup() print("onLevelup called") local player = script.Parent.Parent.Parent for i = 1,5 do local FW = Instance.new("Part", workspace) FW.Shape = 0 FW.formFactor = "Symmetric" FW.Size = Vector3.new(1, 1, 1) FW.BrickColor = BrickColor.Random() FW.CFrame = player.Character.Head.CFrame + Vector3.new(0, 2, 0) FW.Velocity = Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30)) wait(2) FW.Parent = nil local Message = Instance.new("Message", workspace) Message.Text = player.Name .. " Has leveled up, Congratulations!" wait(3) Message.Parent = nil end end level.Value.Changed:connect(onLevelup) xp.Value.Changed:connect(onXpGain) above is my introductory rpg script, however when the level and xp values change, the two functions above don't fire regardless of the fact that they are being called upon those values changing. This is in a local script. located in a player's GUI
DrAquafresh
#182931940Wednesday, February 03, 2016 2:36 PM GMT

is there any reason in particular these aren't working? in the output, there are no issues finding the variables, everything checks out, it's just that the functions don't fire when called.
Egzekiel
#182932744Wednesday, February 03, 2016 3:05 PM GMT

level.Value.Changed:connect(onLevelup) xp.Value.Changed:connect(onXpGain) You musn't use a .Changed event on the Value of an instance but on the Instance itself: level.Changed:connect(onLevelup) xp.Changed:connect(onXpGain)
DrAquafresh
#182933477Wednesday, February 03, 2016 3:34 PM GMT

Thanks a lot for the help! Another thing I noticed was that the variables for xp and level were assigned when the xp function was ran, but since those weren't assigned until then the connects could never run, so I duplicated those variables outside the functions and it works!

    of     1