WiikidMW3
|
  |
| Joined: 30 Nov 2011 |
| Total Posts: 407 |
|
|
| 28 Aug 2012 06:03 PM |
I am making a scary game, And i just cant find out how to make pop ups or like big booms or scary sounds, ive made an intro GUI and stuff but i need to know how to make pop ups and scary sounds.
If you know what to do or how to help PLEASE DO! Even youtube doesnt have an answer D: |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2012 06:06 PM |
game.Workspace.Sound:Play()
and
script.Parent.Touched:connect(function(Toucher) local Player = Game.Players:GetPlayerFromCharacter(Toucher.Parent) if Player then
Player.PlayerGui.test.Frame.Visible = true
end end)
to mak the GUI show up, then to remove it add bricks around it with this script
script.Parent.Touched:connect(function(Toucher) local Player = Game.Players:GetPlayerFromCharacter(Toucher.Parent) if Player then
Player.PlayerGui.test.Frame.Visible = false
end end)
|
|
|
| Report Abuse |
|
|
WiikidMW3
|
  |
| Joined: 30 Nov 2011 |
| Total Posts: 407 |
|
|
| 28 Aug 2012 06:14 PM |
| so do i put tha in a sound of a injected script? |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2012 06:40 PM |
Injected script..? Explain.
------------------------- ~thedestroyer115, some of the most kind and helpful posts possible!~ |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2012 06:43 PM |
| Insert a sound and place it in the Model.Adjuct its ID to whatever you want to play. |
|
|
| Report Abuse |
|
|