storm_xst
|
  |
| Joined: 27 Jul 2016 |
| Total Posts: 1205 |
|
|
| 23 Aug 2016 07:50 PM |
local r = game.Players.LocalPlayer:WaitForChild("OwnedItems").Rank.Value local t = script.Parent.Text
while wait() do if r == 0 then t = "NEWBIE" elseif r == 1 then
etc etc
No errors... I'm confused as hell, this should be so simple |
|
|
| Report Abuse |
|
|
| 23 Aug 2016 07:52 PM |
Can't set a value to a variable. Try this:
local r = game.Players.LocalPlayer:WaitForChild("OwnedItems").Rank
if r.Value == 0 then ect ect |
|
|
| Report Abuse |
|