of     1   

orca101
#64177838Sunday, March 11, 2012 9:04 PM GMT

This isn't giving any output, nor is it printing when it hits something e = Instance.new("Explosion") e.Parent = game.Workspace e.Position = script.Parent.Position e.BlastRadius = 9000 e.BlastPressure = 90000 game.Workspace.Explosion.Hit:connect(function(p, d) print("g2") end)
orca101
#64180372Sunday, March 11, 2012 9:40 PM GMT

Anyone?
Programmer101
#64185153Sunday, March 11, 2012 10:49 PM GMT

What exactly do you want it to do? Its not doing anything because it isn't running, you need a function to make it run.
Programmer101
#64185548Sunday, March 11, 2012 10:54 PM GMT

Something like this will make it run right when you hit play or enter the game. while true do e = Instance.new("Explosion") e.Parent = game.Workspace e.Position = script.Parent.Position e.BlastRadius = 9000 e.BlastPressure = 90000 end
swmaniac
#64185774Sunday, March 11, 2012 10:57 PM GMT

e = Instance.new("Explosion") e.Position = script.Parent.Position e.BlastRadius = 9000 e.BlastPressure = 90000 e.Hit:connect(function(p, d) print("g2") end) e.Parent = game.Workspace

    of     1