of     1   

AlexDaMaster6
#225872916Monday, October 02, 2017 4:38 AM GMT

game.Players.PlayerAdded:connect(function(plr) local stats = Instance.new('IntValue', plr) stats.Name = 'leaderstats' local experience = Instance.new('IntValue', stats) experience.Name = 'Experience' experience.Value = 0 local Level = Instance.new('IntValue', stats) Level.Name = 'Level' Level.Value = 0 experience.Changed:connect(function() Level.Value = math.floor(experience.Value / 100) end) end) game.Workspace.BookshelfFront.Touched:connect() experience.Value = experience.Value + 1 end Im trying to make it so when you walk into the BookshelfFront is gives you experience but it doesn't
ItsBeary
#225872939Monday, October 02, 2017 4:39 AM GMT

Bump
IDKBlox
#225873374Monday, October 02, 2017 4:57 AM GMT

game.Players.PlayerAdded:connect(function(plr) local stats = Instance.new('IntValue', plr) stats.Name = 'leaderstats' local experience = Instance.new('IntValue', stats) experience.Name = 'Experience' experience.Value = 0 local Level = Instance.new('IntValue', stats) Level.Name = 'Level' Level.Value = 0 experience.Changed:connect(function() Level.Value = math.floor(experience.Value / 100) end) game.Workspace.BookshelfFront.Touched:connect(function() experience.Value = experience.Value + 1 end) end)
ItsBeary
#225873462Monday, October 02, 2017 5:01 AM GMT

FIXED ---- IM HIS DEVELOPER ---------
AlexDaMaster6
#225873532Monday, October 02, 2017 5:04 AM GMT

Thanks For Helping and It works but For some Reason I start at 11 XP. Do you think you can help?
IDKBlox
#225874939Monday, October 02, 2017 6:06 AM GMT

Try starting at level 1

    of     1