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 11 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
11 years ago
01local i = Instance.new("Part")
02i.Parent = Workspace
03i.Size = Vector3.new(3,1,1)
04i.TopSurface = "Smooth"
05i.BottomSurface = "Smooth"
06i.Color = Color3.new(0,0,0)
07 
08local w = instance.new("CylinderMesh")
09w.Parent = i
10w.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 — 11y
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 — 11y
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 — 11y
Ad
Log in to vote
-1
Answered by 11 years ago

You build your bullet-basic info

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

Answer this question