RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Shooting"
-- server script local gun = script.Parent local bullet = script.Bullet local function shoot(hit) local b = bullet:Clone() b.Parent = workspace b.CFrame = gun.CFrame b.Velocity = gun.CFrame.lookVector * 100 b.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then hit.Parent.Humanoid:TakeDamage(10) end b:Destroy() end) end gun.Equipped:Connect(function(mouse) mouse.Button1Down:Connect(shoot) end)