| |
|
| |
|
|
| 08 Jan 2012 10:37 AM |
I need an explanation, my code seems to fail; but magically after randomly editing it works. |
|
|
| Report Abuse |
|
|
| |
|
|
| 08 Jan 2012 10:41 AM |
http://www.lua.org/pil/27.3.3.html
Read it, and dumb it down for me :c |
|
|
| Report Abuse |
|
|
| |
|
|
| 08 Jan 2012 10:45 AM |
I had to use F3 :3
Are you an alt? |
|
|
| Report Abuse |
|
|
| |
|
|
| 08 Jan 2012 10:48 AM |
I understand it completely, so this shouldn't be throwing an error.
function AnimateParticle(Particle) Spawn( function() for x = 30, 1, -1 do wait() Particle.Position = UDim2.new(0, Particle.Position.X.Offset, 0, Particle.Position.Y.Offset - 1) Particle.Size = UDim2.new(0, x, 0, x) -- Here end Particle:Destroy() end ) end |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2012 10:49 AM |
I'd prefer a name, not a seasoning. |
|
|
| Report Abuse |
|
|
|
| 08 Jan 2012 10:56 AM |
Could it be because of this:
function CreateParticle(Texture, Pos, Size, Name) Spawn( function() Particle = Instance.new("ImageLabel") Particle.Name = Name Particle.Image = "http://www.roblox.com/asset/?id=".. Texture Particle.BackgroundTransparency = 1 Particle.Size = UDim2.new(0, Size, 0, Size) Particle.Position = Pos Particle.Parent = _G.ParticleHandler end ) end |
|
|
| Report Abuse |
|
|
| |
|
|
| 08 Jan 2012 10:58 AM |
Want that GUI Collision I promised you?
I finished the day you got banned :o |
|
|
| Report Abuse |
|
|