how do i make this gun automatic with a easy to change rpm (how fast the gun shoots)? [CLOSED]
Asked by
4 years ago Edited 4 years ago
this is my script
this makes the gun semi auto
but i want it to be automatic
01 | local tool = script.Parent |
02 | local player = game:GetService( "Players" ).LocalPlayer |
04 | tool.Equipped:connect( function (mouse) |
05 | print ( "Tool equipped!" ) |
07 | mouse.Button 1 Down:connect( function () |
08 | print ( "Mouse pressed!" ) |
09 | local ray = Ray.new(tool.Muzzle.CFrame.p, (mouse.Hit.p - tool.Muzzle.CFrame.p).unit * 300 ) |
10 | local part, position = workspace:FindPartOnRay(ray, player.Character, false , true ) |
12 | local beam = Instance.new( "Part" , workspace) |
13 | beam.BrickColor = BrickColor.new( "Toothpaste" ) |
14 | beam.FormFactor = "Custom" |
15 | beam.Material = "Neon" |
16 | beam.Transparency = 0.25 |
19 | beam.CanCollide = false |
21 | local distance = (tool.Muzzle.CFrame.p - position).magnitude |
22 | beam.Size = Vector 3. new( 0.3 , 0.3 , distance) |
23 | beam.CFrame = CFrame.new(tool.Muzzle.CFrame.p, position) * CFrame.new( 0 , 0 , -distance / 2 ) |
25 | game:GetService( "Debris" ):AddItem(beam, 0.1 ) |
28 | local humanoid = part.Parent:FindFirstChild( "Humanoid" ) |
31 | humanoid = part.Parent.Parent:FindFirstChild( "Humanoid" ) |
35 | humanoid:TakeDamage( 30 ) |
if i put a loop it crashes the studio and the game itself