Raidorz
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 5221 |
|
|
| 08 Nov 2014 07:21 AM |
My easy script:
x = script.Parent.Handle
function onActivated() x.Shape = "Ball" x.Size = Vector3.new(2,2,1) x.Transparency = 0.5 x.BrickColor = BrickColor.new("Medium blue") end
script.Parent.Activated:connect(onActivated)
When I click it falls off, what to do? |
|
|
| Report Abuse |
|
|
| 08 Nov 2014 07:25 AM |
| Search for welding scripts in free models, I really don't feel like explaining |
|
|
| Report Abuse |
|
Raidorz
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 5221 |
|
|
| 08 Nov 2014 07:28 AM |
Nvm, I fixed it.
Now it keeps on growing when I click. How to fix that. |
|
|
| Report Abuse |
|
Raidorz
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 5221 |
|
|
| 08 Nov 2014 07:31 AM |
Oh incase you are confused.
x = script.Parent.Handle y = x.Mesh
x.Shape = "Ball" x.Size = Vector3.new(2,2,1) x.Transparency = 0.5 x.BrickColor = BrickColor.new("Medium blue") y.Offset = Vector3.new(0,0,0) y.Scale = Vector3.new(0,0,0) function onActivated() for fist = 1,10 do x.Transparency = 0.5 y.Scale = y.Scale +Vector3.new(0.1,0.1,0.1) wait() end wait(4) for fist = 1,10 do y.Scale = y.Scale -Vector3.new(0.1,0.1,0.1) x.Transparency = 1 end wait(5) end
script.Parent.Activated:connect(onActivated)
It keeps on growing when I click, how to fix that. |
|
|
| Report Abuse |
|