Advertisement
StarzoZero

Roblox NON FE Thot Guns

Dec 27th, 2018
885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. --Gun Model
  2. ee=Instance.new("Tool",game.Players.LocalPlayer.Backpack)
  3. ee.Name='Heavy Pistol'
  4. ee.RequiresHandle = true
  5. ee.TextureId = 'rbxassetid://381243171'
  6. ee.GripForward = Vector3.new(-0.013, -0.012, 1)
  7. ee.GripPos = Vector3.new(-0.198, 0.031, -0.808)
  8. ee.GripRight = Vector3.new(0.026, 1, 0.012)
  9. ee.GripUp = Vector3.new(1, -0.026, 0.013)
  10. rr=Instance.new("Part",ee)
  11. rr.Name='Handle'
  12. rr.Size = Vector3.new(0.9,0.9,2.1)
  13. rr.BackSurface = 'Smooth'
  14. rr.BottomSurface = 'Smooth'
  15. rr.FrontSurface = 'Smooth'
  16. rr.LeftSurface = 'Smooth'
  17. rr.RightSurface = 'Smooth'
  18. rr.TopSurface = 'Smooth'
  19. rr.BrickColor = BrickColor.new('Black')
  20. zz=Instance.new("SpecialMesh",rr)
  21. zz.MeshId = 'rbxassetid://72012671'
  22. zz.TextureId = 'rbxassetid://72012605'
  23. zz.Scale = Vector3.new(1,1,1)
  24. --Gun Light
  25. ff=Instance.new("PointLight",rr)
  26. ff.Enabled = false
  27. ff.Brightness = 5
  28. ff.Range = 10
  29. --Gun Script
  30. local mouse = game.Players.LocalPlayer:GetMouse()
  31. local function lol()
  32. mouse.Target:BreakJoints()
  33. mouse.Target.Anchored = false
  34. mouse.Target.Locked = false
  35. end
  36. local function sound()
  37. local ze=Instance.new("Sound",rr)
  38. ze.SoundId = 'rbxassetid://226657934'
  39. ze.Volume = 1.4
  40. ze.Playing = true
  41. wait(4)
  42. ze:Destroy()
  43. end
  44. local function light()
  45. ff.Enabled = true
  46. wait(0.2)
  47. ff.Enabled = false
  48. end
  49. local function grip()
  50. ee.GripForward = Vector3.new(-0.249, -0.012, 0.968)
  51. ee.GripPos = Vector3.new(-0.338, 0.031, -0.876)
  52. ee.GripRight = Vector3.new(0.023, 1, 0.018)
  53. ee.GripUp = Vector3.new(0.968, -0.026, 0.249)
  54. wait(0.5)
  55. ee.GripForward = Vector3.new(-0.013, -0.012, 1)
  56. ee.GripPos = Vector3.new(-0.198, 0.031, -0.808)
  57. ee.GripRight = Vector3.new(0.026, 1, 0.012)
  58. ee.GripUp = Vector3.new(1, -0.026, 0.013)
  59. end
  60. ee.Activated:connect(grip)
  61. ee.Activated:connect(light)
  62. ee.Activated:connect(lol)
  63. ee.Activated:connect(sound)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement