of     1   

XxflamefirewheelXx
#227577567Wednesday, November 15, 2017 3:27 PM GMT

This is a leaderboard script, it counts player jumps. Smh, it isn't working, I'm kinda new to scripting. Sooo... local Players = game.Players local Template = Instance.new 'BoolValue' Template.Name = 'leaderstats' Instance.new('IntValue', Template).Name = "Jumps" Players.PlayerAdded:connect(function(Player) wait(1) local Stats = Template:Clone() Stats.Parent = Player local jumps = Stats.Deaths Player.CharacterAdded:connect(function(Character) jumps.Value = jumps.Value + 1 local Humanoid = Character:FindFirstChild "Humanoid" if Humanoid then Humanoid.Died:connect(function() for i, Child in pairs(Humanoid:GetChildren()) do if Child:IsA('ObjectValue') and Child.Value and Child.Value:IsA('Player') then local Killer = Child.Value if Killer:FindFirstChild 'leaderstats' and Killer.leaderstats:FindFirstChild "jumps" then local jumps = jumps.leaderstats.jumps jumps.Value = jumps.Value + 1 end return end end end) end end) end)
TaaRt
#227577671Wednesday, November 15, 2017 3:34 PM GMT

You had this thrown together by begging 2 people for scripts and now hope a third will make your entire game work. You're not just new you're also not doing anything yourself
XxflamefirewheelXx
#227577821Wednesday, November 15, 2017 3:46 PM GMT

So what?? The game could be fun and I'll give credits to them.
XxflamefirewheelXx
#227577863Wednesday, November 15, 2017 3:49 PM GMT

I'm more of a builder.
TaaRt
#227577903Wednesday, November 15, 2017 3:53 PM GMT

Then don't pretend you tried everything to come up with your own stuff when all you did was beg for free things
XxflamefirewheelXx
#227578143Wednesday, November 15, 2017 4:08 PM GMT

I don't "beg" for builds.
BloodDragonII
#227578228Wednesday, November 15, 2017 4:13 PM GMT

You havent really said whats wrong with it you just told us what its supposed to do, but not what its doing instead or any output errors

    of     1