iixono
|
  |
| Joined: 03 Jan 2016 |
| Total Posts: 123 |
|
|
| 18 Sep 2016 05:34 PM |
local artab = game.StarterGui.PemoGUI.Main.high local titantab = game.StarterGui.PemoGUI.Main.TitanScroll
local plr = game.Players.LocalPlayer script.Parent.MouseButton1Click:connect(function() titantab.Visible = false artab.Visible = true end)
Anyone know how to fix this? it isn't working for me for some reason.
|
|
|
| Report Abuse |
|
|
iIikeyou
|
  |
| Joined: 07 Mar 2012 |
| Total Posts: 1659 |
|
|
| 18 Sep 2016 05:37 PM |
StarterGui hands out GUIs when you spawn, changing GUIs in it will only let you see the effects if you respawn. you'd have to change the GUIs cloned into your playerGui
local plr = game.Players.LocalPlayer
local artab = plr.PlayerGui.PemoGUI.Main.high local titantab = plr.PlayerGui.PemoGUI.Main.TitanScroll
script.Parent.MouseButton1Click:connect(function() titantab.Visible = false artab.Visible = true end) |
|
|
| Report Abuse |
|
|
iixono
|
  |
| Joined: 03 Jan 2016 |
| Total Posts: 123 |
|
|
| 18 Sep 2016 05:43 PM |
Wow! Thank you! I really appreciate it :)
|
|
|
| Report Abuse |
|
|