|
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)
|
|
|
|
|
TimeTicksJoin Date: 2011-04-27 Post Count: 27115 |
Change the direction or velocity of the bullet |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
Are there any error messages? |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
define c and add something like this
c.velocity = Vector3.new(0,150,0) |
|
|
@ 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!!!!!!!!!!!!
|
|
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
If you are making a gun, my recommendation is just use a raycast. |
|
ez_streetJoin Date: 2013-07-11 Post Count: 364 |
The reason it doesn't work is because you didn't set the parent of the BodyVelocity. |
|
ez_streetJoin Date: 2013-07-11 Post Count: 364 |
^^ 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. |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
RayCast has better hit detection, and you can make it so it won't be instant |
|
|
@ mung how stupid of me. Thx you! |
|