I am wondering what is the basics of making a "bullet" in Roblox.?(Basic info please)
local i = Instance.new("Part") i.Parent = Workspace i.Size = Vector3.new(3,1,1) i.TopSurface = "Smooth" i.BottomSurface = "Smooth" i.Color = Color3.new(0,0,0) local w = instance.new("CylinderMesh") w.Parent = i w.Scale = Vector3.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