of     1   

rockout47
#35104716Friday, October 08, 2010 10:01 PM GMT

Heres my script: function onTouch() Workspace.Building.BombPart:Instance.New(Explosion) Explosion.BlastRadius= 25 end Workspace.Building.BombPart.Explosion:connect(onTouch) Heres what output says: Workspace.Building.BombPart.Script:2: function arguments expected near '.' Can somebody help me with this? I want to know how I can fix this.
rockout47
#35104955Friday, October 08, 2010 10:04 PM GMT

Bawmp.
Tranhead
#35104993Friday, October 08, 2010 10:05 PM GMT

Tehre is just so much wrong with that.
rockout47
#35105055Friday, October 08, 2010 10:06 PM GMT

Well then help meh.
Tranhead
#35105162Friday, October 08, 2010 10:07 PM GMT

I will, I am just a slow script typer xD
rockout47
#35105254Friday, October 08, 2010 10:08 PM GMT

So many usless posts. Scripting helpers is always so SLOWWW
Tranhead
#35105525Friday, October 08, 2010 10:12 PM GMT

Useless post? Screw it.
rockout47
#35105605Friday, October 08, 2010 10:13 PM GMT

Ugh. This forum is absolutely useless.
BlockBuilder5000
#35105643Friday, October 08, 2010 10:13 PM GMT

function onTouch() Explosion = Instance.new("Explosion", workspace.Building.BombPart) Explosion.BlastRadius = 25 end workspace.Building.BombPart.Touched:connect(onTouch)
zeke505
#35105700Friday, October 08, 2010 10:14 PM GMT

function onTouch() Instance.new("Explosion", workspace.Building.BombPart).BlastRadius = 25 end Workspace.Building.BombPart.Touched:connect(onTouch) You're lucky.
crazypotato4
#35105812Friday, October 08, 2010 10:16 PM GMT

you both forgot to Position the Explosion. That is the one characteristic of Explosions that stuff like fire and sparkles don't have, I don't think that they move to their parent automatically.
BlockBuilder5000
#35105840Friday, October 08, 2010 10:16 PM GMT

Thats what you were intending. But this makes more sense. ------ bp = workspace.Building.BombPart function onTouch() Explosion = Instance.new("Explosion", workspace) Explosion.Position = bp.Position Explosion.BlastRadius = 25 end bp.Touched:connect(onTouch) ------ Don't mind the people trolling you. They think that somehow people who are bad at scripting don't deserve to be helped. I don't get it. Scripting is a passion, and fixing broken scripts is fun.
bloob827
#35105861Friday, October 08, 2010 10:16 PM GMT

function onTouch(hit) x = game.Worksapce.Building.BombPart:Instance.new("Explosion") x.BlastRadius = 25 end script.Parent.Touched:connect(onTouched)
zeke505
#35105914Friday, October 08, 2010 10:17 PM GMT

@blockbuilder Nobody trolled him. He insulted us and called our posts useless, while we were trying to help.
crazypotato4
#35105943Friday, October 08, 2010 10:17 PM GMT

bloob, I promise that if I direct anyone in the scripting helping group to this thread, you would probably get demoted to basic scripter.
BlockBuilder5000
#35106008Friday, October 08, 2010 10:18 PM GMT

@zeke Two things wrong with that. One, you can't do this "Instance.new("Object", parent).Property = something" Two, the position will be set to 0,0,0
zeke505
#35106105Friday, October 08, 2010 10:19 PM GMT

@blockbuilder Instance.new("Object", parent).Property = something Is completely valid as long as it isn't set as a variable.
crazypotato4
#35106157Friday, October 08, 2010 10:20 PM GMT

BlockBuilder, you never positioned it either.
BlockBuilder5000
#35106161Friday, October 08, 2010 10:20 PM GMT

@zeke on him insulting us Give him a break. He probably isn't used to scripting helpers and doesn't know how to act. I just want to make sure he doesn't leave scripting helpers forever and decides not to become a scripter just because of us.
hidude43
#35106173Friday, October 08, 2010 10:20 PM GMT

@zeke505. Phail. You were trying to copy the person above you's script but you didn't even include 2 important things. Blast radious and position. :3
BlockBuilder5000
#35106215Friday, October 08, 2010 10:20 PM GMT

@crazypotato I did position it. In my first post I didn't, but if you saw my second post, I fixed it.
zeke505
#35106254Friday, October 08, 2010 10:21 PM GMT

@hidude Hey, look! Theres this new thing called a "late post"! I think you should try it. Stop flaming.
hidude43
#35106366Friday, October 08, 2010 10:22 PM GMT

@Blockbuilder. Man you don't know how much is true. People dislike scripters for some reason. Just because it doesn't take 5 seconds for an answer doesn't mean you have to leave the scripting sections. Just wait a little longer because eventually people will respond and your script will be fixed. :3 Then you'll be happy!
BlockBuilder5000
#35106369Friday, October 08, 2010 10:22 PM GMT

Hey now. Lets not have a flame war in front of the thread poster. It gets really embarassing, trust me, its happened to my thread.

    of     1