--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 |