Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I make an object add 1 point on a leaderboard when someone touches it?

Asked by
NecoBoss 194
11 years ago

I'm not really sure where to start. Would I use onTouch function?

3 answers

Log in to vote
2
Answered by 11 years ago

Place this in the part that you want to be touched:

01script.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
12end)
0
Thank you. NecoBoss 194 — 11y
1
Accept and upvote my answer if I helped :) Articulating 1335 — 11y
1
I need at least 1 reputation xD NecoBoss 194 — 11y
Ad
Log in to vote
1
Answered by 11 years ago

Simple, really.

1function touched(hit)
2if hit.Parent:findFirstChild("Humanoid") then
3local plr=game.Players:GetPlayerFromCharacter(hit.Parent)
4plr.leaderstats.Points.Value=plr.leaderstats.Points.Value+1
5end
6end
7script.Parent.Touched:connect(touched)

This script will check to make sure it's a person, and then add +1 to points.

Log in to vote
0
Answered by 11 years ago

Yes. It would look kind of like this.

1local function(onTouch)
2    game.Players.PlayerAdded:connect(function(player)
3 
4                Player.leaderstats.Money.Value = Player.leaderstats.Money.Value +1
5end

Keep in mind that this is a rough representation, it may/may not work in game.

Answer this question