Answered by
5 years ago Edited 5 years ago
First, we need to detect if the player is running or not.
1 | game.Players.PlayerAdded:connect( function (p) |
2 | p.CharacterAdded:connect( function (c) |
3 | c:WaitForChild( "Humanoid" ).Running:connect( function (speed) |
That script should detect how fast the player is going, usually when over 8 they are running, so you can raise it if needed
Now the removing coins.
1 | local leaderstats = p:WaitForChild( "leaderstats" ).Coins |
2 | leaderstats.Value = leaderstats.Value - 1 |
To put them together do:
01 | game.Players.PlayerAdded:connect( function (p) |
02 | p.CharacterAdded:connect( function (c) |
03 | c:WaitForChild( "Humanoid" ).Running:connect( function (speed) |
07 | local leaderstats = p:WaitForChild( "leaderstats" ).Coins |
08 | leaderstats.Value = leaderstats.Value - 1 |
make sure the last script is in server script storage
Closed as Not Constructive by hiimgoodpack and Torren_Mr
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?