|
| 20 Aug 2015 03:02 AM |
--Made by SolarStuds
local BackpackButton = script.Parent.BackpackButton local BackpackFrame = script.Parent.BackpackFrame
local StarterPic = BackpackFrame.Pokemon1 local NoPic = BackpackFrame.Pokemon2 local NothingBox = BackpackFrame.NothingBox local StarterBox = BackpackFrame.Level1AndHealthBox local Open = false
BackpackButton.MouseButton1Down:connect(function() if Open == false then BackpackFrame.Visible = true Open = true elseif Open == true then BackpackFrame.Visible = false Open = false end end)
while true do wait(1) StarterBox.Text = "Level 1" wait(1) StarterBox.Text = "Health 100" if Open == true then StarterBox.Text = "Level 1" end end |
|
|
| Report Abuse |
|
|
|
| 20 Aug 2015 03:03 AM |
| Its mainly the while true do loop thats the problem |
|
|
| Report Abuse |
|
|
|
| 20 Aug 2015 03:45 AM |
| lol idiot maybe you'll become a master scripter like me oneday XD |
|
|
| Report Abuse |
|
|
KOzero
|
  |
| Joined: 11 May 2010 |
| Total Posts: 1411 |
|
|
| 20 Aug 2015 06:02 AM |
| Remove the While loop it's pointless. |
|
|
| Report Abuse |
|
|