of     1   

swimmaster07
#182999840Thursday, February 04, 2016 9:31 PM GMT

ok so this is a bullet script. For some reason, instead of the bullet actually shooting, it just falls down into the ground. Help?! local player = game.Players.LocalPlayer local mouse = player:GetMouse() local tool = script.Parent local Handle = tool:WaitForChild("Handle") local sound = tool.Sound local debounce = false tool.Activated:connect(function() local ball = Instance.new("Part", game.Workspace) game.Debris:AddItem(ball, .2) ball.Shape = "Ball" ball.Size = Vector3.new(0.2, 0.2, 0.2) ball.BrickColor = BrickColor.new("Lily white") ball.CanCollide = false ball.CFrame = Handle.CFrame ball.CFrame = CFrame.new(ball.Position, mouse.hit.p) local v = Instance.new("BodyVelocity") v.velocity = ball.CFrame.lookVector * 90 v.MaxForce = Vector3.new(math.huge, math.huge, math.huge) end)
swimmaster07
#183000465Thursday, February 04, 2016 9:42 PM GMT

b
swimmaster07
#183000949Thursday, February 04, 2016 9:51 PM GMT

b
swimmaster07
#183001930Thursday, February 04, 2016 10:08 PM GMT

please help -_-
TimeTicks
#183001975Thursday, February 04, 2016 10:09 PM GMT

Change the direction or velocity of the bullet
ferano
#183001979Thursday, February 04, 2016 10:09 PM GMT

Are there any error messages?
ferano
#183002054Thursday, February 04, 2016 10:10 PM GMT

define c and add something like this c.velocity = Vector3.new(0,150,0)
swimmaster07
#183003080Thursday, February 04, 2016 10:28 PM GMT

@ ferano 1. No the output doesn't say anything 2. Did what u said but still doesn't work. :P local player = game.Players.LocalPlayer local mouse = player:GetMouse() local tool = script.Parent local Handle = tool:WaitForChild("Handle") local sound = tool.Sound local debounce = false tool.Activated:connect(function() local ball = Instance.new("Part", game.Workspace) game.Debris:AddItem(ball, .2) ball.Shape = "Ball" ball.Size = Vector3.new(0.2, 0.2, 0.2) print("hi") ball.BrickColor = BrickColor.new("Lily white") ball.CanCollide = false ball.CFrame = Handle.CFrame ball.CFrame = CFrame.new(ball.Position, mouse.hit.p) local v = Instance.new("BodyVelocity") v.velocity = ball.CFrame.lookVector * 180 v.velocity = Vector3.new(0, 150, 0) v.MaxForce = Vector3.new(math.huge, math.huge, math.huge) print("wasssar") end) HALP!!!!!!!!!!!!
swimmaster07
#183003932Thursday, February 04, 2016 10:45 PM GMT

b
ferano
#183004158Thursday, February 04, 2016 10:49 PM GMT

If you are making a gun, my recommendation is just use a raycast.
ez_street
#183004284Thursday, February 04, 2016 10:51 PM GMT

The reason it doesn't work is because you didn't set the parent of the BodyVelocity.
ez_street
#183004361Thursday, February 04, 2016 10:52 PM GMT

^^ Ferano, in my opinion, it looks better to put a velocity, to make it look like its actually taking time to hit a part, not instantaneous.
ferano
#183004492Thursday, February 04, 2016 10:54 PM GMT

RayCast has better hit detection, and you can make it so it won't be instant
swimmaster07
#183006208Thursday, February 04, 2016 11:20 PM GMT

@ mung how stupid of me. Thx you!

    of     1