PFFXJoin Date: 2013-05-18 Post Count: 5949 |
Basically what I need the script to do is pop up the GUI named "Img1"
then wait(1)
Then img1 gets removed
Thanks if you can help :D |
|
|
local img1 = game.Players.LocaIPIayer.PIayerGui.Img1
img1.VisibIe = true
wait(1);Spawn(wait)
img1:Destroy() |
|
fret13103Join Date: 2010-03-15 Post Count: 881 |
What will cause it to pop up, or will it just be random?
|
|
fret13103Join Date: 2010-03-15 Post Count: 881 |
wait(1);Spawn(wait)
stop trolling |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
@Both
I don't want to destroy it I just need it to be not visible after wait(1)
sorry for the messup
@Fret
It will be with a countdown so all I need is the basic popup then not visible after 1 sec |
|
|
local img1 = game.Players.LocaIPIayer.PIayerGui.Img1
img1.VisibIe = true
wait(1);Spawn(wait)
img1.VisibIe = false |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
@Both
Please stop trolling :/ |
|
|
local img1 = game.Players.LocaIPIayer.PIayerGui.lmg1
img1.VisibIe = true
wait(1)
img1.VisibIe = false |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
You're using an i |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
Help please :S |
|
fret13103Join Date: 2010-03-15 Post Count: 881 |
In the starter Gui will be your Gui, when the game starts it gets cloned into the backpack, but that doesn't matter.
Put this script inside the Gui which is inside the Starter Gui.
script.Parent.Visible
wait(1)
script.Parent.Visible = false;
Change the amount of parents to locate your Gui.
Slightly confusing, but you should understand. |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
@Fret
Thanks for your help
But I need it in the Main game GUI
It should sorta look like this
game.Workspace.Beep:Play()
wait(0.35)
game.Workspace.Beep:Stop()
msg.Value = "3"
--- IMAGE appears here
wait (1)
--- Image is gone here
|
|
|
You don't need to :Stop() the sound Beep unless it's continous loop. |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
@Fl
It is |
|
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
@Flamed
If I click what I need it said it's removed... |
|
PFFXJoin Date: 2013-05-18 Post Count: 5949 |
:? |
|