Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INSTRUCTIONS TO MAKE A ROBLOX WORKING CANNON! READ CAREFUL IF NO WORK REDO CAUSE IT DOES WORK!!!
- Make different parts with cylinders and whatever you want, to look like a cannon.
- Then make a circular object and make it the size you want, to be a bullet... Now after making a circle, go to upper part of studio then go to spawn thing, but to the right of that you will see something like "Add Effect". So with the add effect option you are going to simply click it and click fire, but make sure the firing part (tube that shoots it) is clicked on before clicking the fire effect.
- Name the bullet "Fireball" and set the transparency to 1. Then put the Fireball in ServerStorage, name the barrel of the cannon "barrel" also caps at beginning do count so do EXACTLY as I in this instruction. The base of the cannon name cannon and group them!
- Now go to the cannon, and insert a script. Now after that put in the script:
- local cannon = script.Parent
- local barrel = cannon.barrel
- local fireball = game.ServerStorage.Fireball
- while true do
- local fireballCopy = fireball:Clone()
- fireballCopy.Parent = game.Workspace
- fireball.Position = barrel.Position
- fireball.Velocity = Vector3.new(-70,0,0) ⬅️ MAKE THAT IN THERE WHATEVER CORDINATE YOUR CANNON IS.
- wait (2)
- end
- [IF THIS DOES NOT WORK DM ME @Real_Dev#3336]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement