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

Check multiple tshirts instead of 1?

Asked by 8 years ago

CURRENT SCRIPT :

01local sen2 = script.Parent.Sen2
02local link = game:GetService("BadgeService")
03 
04--//
05 
07 
08local sc = script.Parent.Screen.SurfaceGui.Frame
09 
10function onTouched(hit)
11    local human = hit.Parent:FindFirstChild'Humanoid'
12    local pla = game.Players:GetPlayerFromCharacter(hit.Parent)
13    if human then
14    --//Shirt1
15        if hit.Parent:FindFirstChild'Shirt Graphic' then
View all 30 lines...

As you can see here I only am checking 1 tshirt in the script at the moment, how can I change this so I can have possibly a folder of number values that consist of tshirt IDs, and it goes through checking them all seeing if the player is wearing at least one of the real tshirt it prints "yes"

0
I would just use a table of shirt IDs and loop though them to see if a player has that item. User#11440 120 — 8y
0
What type of loop? UnleashedGamers 257 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago
Edited 8 years ago

Well, like I said before, I personally this isnt a very professional way of checking a person wearing a tshirt, but since the script works I guess you can keep it.

01local sen2 = script.Parent.Sen2
02local link = game:GetService("BadgeService")
03 
04--//
05 
09 
10local sc = script.Parent.Screen.SurfaceGui.Frame
11 
12function onTouched(hit)
13    local human = hit.Parent:FindFirstChild'Humanoid'
14    local pla = game.Players:GetPlayerFromCharacter(hit.Parent)
15    if human then
View all 32 lines...
Ad

Answer this question