|
| 29 Jun 2011 07:37 AM |
I need help. Im trying to make a thing where if you wear a VIP shirt into the game and it detects the text should say VIP : Yes and if it doesnt it says VIP : No. Heres the script:
permission = ("ultraweirdo98") human = script.Parent.Parent.Parent.Parent.Parent ID = human.Torso.roblox.Texture = "http://www.roblox.com/asset/?id=55059002"
while true do wait(0) if human.roblox.Texture == ID then script.Parent.Text = "VIP : Yes" elseif human.roblox.Texture ~= ID then script.Parent.Text = "VIP : No" end end
while true do wait(0) if human.Name == permission then script.Parent.Text = "VIP : Yes" elseif human.Name ~= permission then script.Parent.Text = "VIP : No" end end |
|
|
| Report Abuse |
|
|
|
| 29 Jun 2011 07:45 AM |
| create a value in the script and then if it's yes, make it change the value to 1 and if it's no, make it change it to 2. |
|
|
| Report Abuse |
|
|
| |
|