Advertisement
DoICare

Brook Haven Gun Script

Apr 15th, 2023
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | Gaming | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. -- AK-47
  5. local ak47 = Instance.new("Tool")
  6. ak47.RequiresHandle = false
  7. ak47.Name = "AK-47"
  8. ak47.Activated:Connect(function()
  9. local gun = Instance.new("Part", game.Workspace)
  10. gun.Name = "AK-47"
  11. gun.BrickColor = BrickColor.new("Really black")
  12. gun.Size = Vector3.new(1, 1, 3)
  13. gun.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0, 0, -2)
  14. local fire = Instance.new("Fire", gun)
  15. fire.Size = 5
  16. fire.Heat = 10
  17. fire.Color = Color3.new(255, 0, 0)
  18. local smoke = Instance.new("Smoke", gun)
  19. smoke.Size = 5
  20. smoke.Color = Color3.new(0, 0, 0)
  21. local sound = Instance.new("Sound", gun)
  22. sound.SoundId = "rbxassetid://0"
  23. sound.Volume = 5
  24. sound:Play()
  25. wait(0.5)
  26. gun:Destroy()
  27. end)
  28. ak47.Parent = game.Players.LocalPlayer.Backpack
  29.  
  30. -- RPG
  31. local rpg = Instance.new("Tool")
  32. rpg.RequiresHandle = false
  33. rpg.Name = "RPG"
  34. rpg.Activated:Connect(function()
  35. local missile = Instance.new("Part", game.Workspace)
  36. missile.Name = "Missile"
  37. missile.BrickColor = BrickColor.new("Really black")
  38. missile.Size = Vector3.new(2, 2, 6)
  39. missile.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0, 0, -10)
  40. local sound = Instance.new("Sound", missile)
  41. sound.SoundId = "rbxassetid://0"
  42. sound.Volume = 5
  43. sound:Play()
  44. local explosion = Instance.new("Explosion", missile)
  45. explosion.BlastPressure = 5000
  46. explosion.BlastRadius = 25
  47. explosion.Position = missile.Position
  48. wait(0.5)
  49. missile:Destroy()
  50. end)
  51. rpg.Parent = game.Players.LocalPlayer.Backpack
  52.  
Tags: #roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement