Alright, here's the modified code. Not sure if this is the answer, but here it is.
02 | script.Parent.Activated:Connect( function () |
05 | script.Parent.RightHand.ParticleEmitter.Rate = script.Parent.RightHand.ParticleEmitter.Rate + . 12 |
08 | local p = Instance.new( "Part" ) |
09 | p.Parent = game.Workspace |
10 | local x = Instance.new( "BodyVelocity" ,p) |
Here's some things in mind.
The way you used the Instance.new()
constructor function is deprecated. It's better to parent it after the creation. (or later)
A right parentheses )
was forgotten at line 11, column 4, since you didn't create the callback function earlier (but that works!)