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

why this gun shooting script isn't working at all?

Asked by 5 years ago
Edited 5 years ago

so i tried to make a gun. first i tried to make a shooting script that just shoots a small yellow brick here's the script:

01local tool = script.Parent
02local shootpart = tool.Shoot
03tool.Activated:Connect(function()
04        local bullet = Instance.new("Part")
05        local bulletscript = tool.Bullet:Clone()
06        bullet.Size = Vector3.new(0.1,0.1,0.1)
07        bullet.BrickColor = BrickColor.new("New Yeller")
08        bullet.Parent = workspace
09        bulletscript.Parent = bullet
10        bulletscript.Disabled = false
11        bullet.Position = shootpart.Position
12        bullet.Velocity = shootpart.CFrame.LookVector*10
13end)

doesn't work of course

0
try looking for errors in the output menu User#23252 26 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

sorry the question, the tool have handle? , if RequiresHandle on tool properties is true and not have Handle the tool dont work.

0
the tool has handle and im not getting any errors TFlanigan 86 — 5y
0
i tested on studio and works, but the force is low(*10) clashzone_fc 63 — 5y
Ad

Answer this question