| |
|
thetacah
|
  |
| Joined: 18 Jan 2013 |
| Total Posts: 16026 |
|
|
| 23 Dec 2013 05:12 PM |
Add a gui add a textbutton MouseButton1Click Clone the car parent the car to Workpsace |
|
|
| Report Abuse |
|
|
| |
|
|
| 23 Dec 2013 05:25 PM |
| also what exactly do i do ? |
|
|
| Report Abuse |
|
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
|
| 23 Dec 2013 05:30 PM |
Make an GUI, then make an BUTTEN for the GUI,
-LᴏʀᴅGᴀɴᴅᴏ - Cows make milk, I drink milk http://woobox.com/6gs8j6/vote/for/1518073 |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 05:35 PM |
| i made the button etc but how do i make it spawn a car. |
|
|
| Report Abuse |
|
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
|
| 23 Dec 2013 05:48 PM |
You need to make an script inside the butten
-LᴏʀᴅGᴀɴᴅᴏ - Cows make milk, I drink milk http://woobox.com/6gs8j6/vote/for/1518073 |
|
|
| Report Abuse |
|
|
|
| 23 Dec 2013 06:11 PM |
sweet now i need scripting lessons
|
|
|
| Report Abuse |
|
|
EcIiptic
|
  |
| Joined: 12 Aug 2009 |
| Total Posts: 13737 |
|
|
| 23 Dec 2013 06:15 PM |
Spawn a car?
Put your said car in ServerStorage and then do this.
local c = game.ServerStorage.CARNAMEHERE:Clone()
c.Parent = game.Workspace
That's your basic cloning script. If you want to get into further detail, you probably need to learn some basic scripting. |
|
|
| Report Abuse |
|
|
| |
|
|
| 23 Dec 2013 06:51 PM |
Car = game.ReplicatedStorage.CARNAMEHERE
script.Parent.MouseButton1Down:connect(function() Thing = Car:clone() Thing:MakeJoints() -- maybe put this line under thing.parent = workspace if it doesn't work Thing.Parent = workspace script.Parent.Parent.Visible = false
end) |
|
|
| Report Abuse |
|
|