CalbaMan
|
  |
| Joined: 17 Apr 2011 |
| Total Posts: 131 |
|
|
| 18 Jul 2011 09:09 PM |
I am currently building a game called Mountain Exploration. I want to add a few tele guis and buttons for Battle Arenas and such. How would I do that?
Thank you in advance! ~ CalbaMan |
|
|
| Report Abuse |
|
|
|
| 18 Jul 2011 09:13 PM |
| Free models, Or learn to script. |
|
|
| Report Abuse |
|
|
| |
|
ZGS
|
  |
| Joined: 01 Aug 2009 |
| Total Posts: 3972 |
|
|
| 18 Jul 2011 09:17 PM |
Create ScreenGui into StarterGui, and insert a TextButton into ScreenGui. Insert a script into TextButton, and type this into the script:
local Button = script.Parent
function onClick()
--Insert the teleport script here
end
Button.MouseButton1Click:connect(onClick)
Don't forget to add your teleport script to the script, and make sure the Gui is visible and everything. |
|
|
| Report Abuse |
|
|
CalbaMan
|
  |
| Joined: 17 Apr 2011 |
| Total Posts: 131 |
|
| |
|