I'm not really sure where to start. Would I use onTouch function?
Place this in the part that you want to be touched:
01 | script.Parent.Touched:connect( function (hit) --When the part is touched. |
02 | if debounce then |
03 | return nil |
04 | end |
05 | local Player = Game.Players:GetPlayerFromCharacter(hit.Parent) |
06 | if Player then --If it was a Player that touched. |
07 | debounce = true |
08 | Player.leaderstats.Points.Value = Player.leaderstats.Points.Value + 1 |
09 | wait( 1 ) |
10 | debounce = false |
11 | end |
12 | end ) |
Simple, really.
1 | function touched(hit) |
2 | if hit.Parent:findFirstChild( "Humanoid" ) then |
3 | local plr = game.Players:GetPlayerFromCharacter(hit.Parent) |
4 | plr.leaderstats.Points.Value = plr.leaderstats.Points.Value+ 1 |
5 | end |
6 | end |
7 | script.Parent.Touched:connect(touched) |
This script will check to make sure it's a person, and then add +1 to points.
Yes. It would look kind of like this.
1 | local function (onTouch) |
2 | game.Players.PlayerAdded:connect( function (player) |
3 |
4 | Player.leaderstats.Money.Value = Player.leaderstats.Money.Value + 1 |
5 | end |
Keep in mind that this is a rough representation, it may/may not work in game.