In my game players should get +1 Power on the leaderboard for bouncing on a trampoline I made. I created a trampoline by anchoring a part and changing its y-velocity. The bouncy part is also a part of a model made up of multiple parts if that makes a difference, but I have also already tried the script with plain bricks and had no luck.
01 | game.Players.PlayerAdded:connect( function (player) |
02 | local debounce = true |
03 | script.Parent.Touched:connect( function () |
04 | local plrstats = player.leaderstats.Timer |
05 | if debounce then |
06 | debounce = false |
07 | plrstats.Value = plrstats.Value + 1 |
08 | wait( 2 ) |
09 | debounce = true |
10 | end |
11 | end ) |
12 | end ) |
I am also providing my leaderboard script in case it is useful.
1 | game.Players.PlayerAdded:connect( function (player) |
2 | local Stats = Instance.new( "Model" , player) |
3 | Stats.Name = "leaderstats" |
4 | local Timer = Instance.new( "IntValue" , Stats) |
5 | Timer.Name = "Power" |
6 | Timer.Value = 0 |
7 |
8 | end ) |
You named the value "Power", but have the other script looking for "Timer".
Just change line 4 of the ontouch script:
1 | local plrstats = player.leaderstats.Power |
As a bonus, here's a edited version of the ontouch script that may fix some other unintended issues with the original.
I hope it helps:
01 | local debounce = true |
02 | local plrstats |
03 | script.Parent.Touched:connect( function (part) |
04 | if debounce and game.Players:FindFirstChild(part.Parent.Name) then |
05 | debounce = false |
06 | plrstats = game.Players:FindFirstChild(part.Parent.Name).leaderstats.Power |
07 | plrstats.Value = plrstats.Value + 1 |
08 | wait( 2 ) |
09 | debounce = true |
10 | end |
11 | end ) |