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

Can anyone help me?

Asked by 9 years ago
01local player = {}
02function touchmebaby(hit)
03    if hit.Parent:findFirstChild("Humanoid") then
04        local x = {}
05        local q = {game.Players}
06        for i, v in pairs(q):GetChildren() do
07            table.insert(x, "v.Name")
08            if v.Name == hit.Parent then
09                if v.leaderstats.Value == 1 then
10                v.leaderstats.Value =2
11            end
12            end
13    end
14        elseif hit.Parent.Parent.leaderstats.Level.Value < 2 then
15        return
16    end
17end
18 
19script.Parent.Touched:connect(touchmebaby)

I want to get the player from the character after stepping on the part .-.

2 answers

Log in to vote
3
Answered by 9 years ago

A couple of mistakes, you need to read more about iteration and the use of tables.

Fixed script

01function touchmebaby(hit)
02    if hit.Parent:findFirstChild("Humanoid") then
03        local player = game.Players:GetPlayerFromCharacter(hit.Parent) -- There is a function, GetPlayerFromCharacter(), pretty self-explanatory
04        if player.leaderstats.Value == 1 then
05            player.leaderstats.Value = 2
06        end
07    end
08end
09 
10script.Parent.Touched:connect(touchmebaby)

You had tables, and things that you did not even need, this script is way simpler and works properly, you need to think of the simplest way to accomplish what you want, it's way easier, faster, and way more efficient.

Hope this helps!

0
Ah, that will work better than mine, faster, but I think the leaderstats value is an int? Wouldn't it be better to increment it like: player.leaderstats.Value = player.leaderstats.Value + 1? Xetrax 85 — 9y
0
It doesn't really matter, since you're only changing the value only if it's at 1. AbsoluteAxiom 175 — 9y
Ad
Log in to vote
1
Answered by
Xetrax 85
9 years ago

I believe one error is right in Line 07, you referenced the string path for the player's name, which will always end up in your table as "v.Name", just take away the quotes around v.Name; And again, another error is right in Line 10, if you want to increment an INT value, which is what I'm guessing this value to be, always write it like: v.leaderstats.Value = v.leaderstats.Value + 1, which will increment the value by 1. The last error I see is on line 14, you're trying to reference the leaderstats in the Workspace(?), you don't want to do this, instead do it like: elseif game.Players:GetPlayerFromCharacter(hit.Parent).leaderstats.Value < 2 then return end (Which I might add makes no sense, as it will always return and never give them a point... Also, I now see one last error, you wrote your q table like the Players are an object, not correctly getting all the members of Players, write tables like this in the future like so: q = game.Players:GetChildren() which will get every player in Players and store them in the table.

Answer this question