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:
01 | local tool = script.Parent |
02 | local shootpart = tool.Shoot |
03 | tool.Activated:Connect( function () |
04 | local bullet = Instance.new( "Part" ) |
05 | local bulletscript = tool.Bullet:Clone() |
06 | bullet.Size = Vector 3. 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 |
doesn't work of course