My cannon is not working if I walk over the stepped pad. What is the mistake in the script?
Im trying to do a Cannon. If u touch the stepped pad the cannon will shoot. I tried it already without a local function and without the steppedpad and it worked. But I tried to add the stepped pad and it wont work. Can anyone fix the script so it will Work?
01 | local cannon = script.Parent |
02 | local barrel = cannon.Barrel |
03 | local fireball = game.ServerStorage.Fireball |
04 | local steppedpad = cannon.steppedOn |
06 | local function gethit(part) |
07 | local parent = part.Parent |
08 | if game.Players:GetPlayerFromCharacter(parent) then |
09 | local fireballCopy = fireball:Clone() |
10 | fireballCopy.Parent = game.Workspace |
11 | fireballCopy.Position = barrel.Position |
12 | fireballCopy.Velocity = Vector 3. new(- 100 , 0 , 0 ) |
17 | steppedpad.Touched:connect(gethit) |
I will tell you more information: the script is inside a model named Cannon. but if you stay on steppedpad then
1 | fireballCopy.Parent = game.Workspace |
2 | fireballCopy.Position = barrel.Position |
3 | fireballCopy.Velocity = Vector 3. new(- 100 , 0 , 0 ) |
Won't work, and the fireball won't even spawn! can anyone help me?