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

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

01local tool = script.Parent
02local player = game:GetService("Players").LocalPlayer
03 
04tool.Equipped:connect(function(mouse)
05    print("Tool equipped!")
06 
07    mouse.Button1Down: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)
11 
12        local beam = Instance.new("Part", workspace)
13        beam.BrickColor = BrickColor.new("Toothpaste")
14        beam.FormFactor = "Custom"
15        beam.Material = "Neon"
View all 39 lines...

if i put a loop it crashes the studio and the game itself

0
I recommend free models for guns there is one that works and allows you to create any weapon with any settings BabanizPROcuk 49 — 4y
0
use a loop but with wait() or game:GetService("RunService").Heartbeat:Wait() maumaumaumaumaumua 628 — 4y
0
where would i put the loop around @maumaumaumaumaumua ProjectInfiniti 192 — 4y
0
nvm i got it ProjectInfiniti 192 — 4y

Answer this question