|
| 03 Nov 2013 05:08 PM |
I am really puzzled by this, have never had a problem like this before
Pretty much, this script works perfect, but the GUI it makes visible at the end not only takes too long to appear, but just stays up.
I have no idea
local Info = script.Parent.Parent.Information local player = script.Parent.Parent.Parent.Parent.Parent local tool = game.Lighting:FindFirstChild("JetPack") local clone = tool:Clone()
function OnClick() if player.leaderstats.Cash.Value <= 30 then player.leaderstats.Cash.Value = player.leaderstats.Cash.Value - 30 clone.Parent = player.Backpack Info.Text = "Congratulations! You Rented a JetPack!" Info.Visible = false wait(1) Info.Visible = true else Info.Text = "Not Enough Cash!" Info.Visible = false wait(1) Info.Visible = true end end
script.Parent.MouseButton1Down:connect(OnClick) |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2013 05:10 PM |
| Really...Why do you make multiple threads... |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2013 05:10 PM |
| This is a completely different issue, although with the same script. |
|
|
| Report Abuse |
|
|
|
| 03 Nov 2013 05:12 PM |
Nevermind, I'm an idiot.
had it swapped. |
|
|
| Report Abuse |
|
|