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

My Bullet Floats Straight Up?

Asked by 10 years ago

My Bullets just float straight up into the sky when I shoot

01plr = game.Players.LocalPlayer
02enabled = true
03waittime = 0.1
04button = script.Parent
05 
06function Fire()
07    if enabled then
08        enabled = false
09        p = Instance.new("Part",workspace)
10        p.Name = "Bullet"
11        p.BrickColor = plr.TeamColor
12        p.CanCollide = false
13        p.TopSurface = "Smooth"
14        p.BottomSurface = "Smooth"
15        p.FormFactor = "Custom"
View all 32 lines...
0
My Bullets just float straight up into the sky when I shoot ILikepie2100 20 — 10y

1 answer

Log in to vote
0
Answered by 10 years ago

I'm not good with these type of things, but I think it's something to do with your BodyVelocity. It's probably set up wrong, so instead of the bullets going straight, they go up.

Ad

Answer this question