Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Some help with Bullet Basics?

Asked by 10 years ago

I am wondering what is the basics of making a "bullet" in Roblox.?(Basic info please)

2 answers

Log in to vote
1
Answered by
Hybric 271 Moderation Voter
10 years ago
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 a BodyVelocity inside the Bullet
Be sure it goes quick(The BULLET)

0
Thank you, this helped alot. If the game I am making goes any where. I will give you credit. ;) So this is Parent based? Also any way to change speed/direction? LuckTron 15 — 10y
0
@LuckTron You have to use `Body Velocities` it will say in the properties: `velocity` You can look at it or i will give it you in script. Hybric 271 — 10y
0
@Hybric I guess I will find out the rest myself, I will just use the thing up there. :p But thanks! You helped a ton! LuckTron 15 — 10y
Ad
Log in to vote
-1
Answered by 10 years ago

You build your bullet-basic info

0
you can make your bullet look like what ever you want though danielsarabia11 -2 — 10y
0
I have been building on Roblox for a long time. I posted this on Script helper, to get help on scripts. LuckTron 15 — 10y

Answer this question