I am wondering what is the basics of making a "bullet" in Roblox.?(Basic info please)
01 | local i = Instance.new( "Part" ) |
02 | i.Parent = Workspace |
03 | i.Size = Vector 3. new( 3 , 1 , 1 ) |
04 | i.TopSurface = "Smooth" |
05 | i.BottomSurface = "Smooth" |
06 | i.Color = Color 3. new( 0 , 0 , 0 ) |
07 |
08 | local w = instance.new( "CylinderMesh" ) |
09 | w.Parent = i |
10 | w.Scale = Vector 3. new( 0.4 , 0.4 , 0.4 ) |
That is a bullet script
(Fragment)
You must also insert aBodyVelocity
inside theBullet
Be sure it goes quick(The BULLET)
You build your bullet-basic info