Advertisement
Guest User

Untitled

a guest
Feb 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1.  
  2. local hyperlasergun = Instance.new("Tool")
  3. local handle = Instance.new("Part")
  4. local mesh = Instance.new("SpecialMesh")
  5. local fire = Instance.new("Sound")
  6. local reload = Instance.new("Sound")
  7. local pointlight = Instance.new("PointLight")
  8. local hitfade = Instance.new("Sound")
  9. local thumbnailcamera = Instance.new("Camera")
  10.  
  11. hyperlasergun.CanBeDropped = false
  12. hyperlasergun.GripPos = Vector3.new(0, -0.1, 0.75)
  13. hyperlasergun.TextureId = "http://www.roblox.com/asset/?id=130093050"
  14. hyperlasergun.Grip = CFrame.new(0, -0.1, 0.75)
  15. hyperlasergun.Name = "HyperlaserGun"
  16. hyperlasergun.Parent = game.StarterPack
  17. handle.Size = Vector3.new(0.58, 1.34, 2.48)
  18. handle.Name = "Handle"
  19. handle.Orientation = Vector3.new(26.04, -169.11, 21.39)
  20. handle.TopSurface = Enum.SurfaceType.Smooth
  21. handle.BottomSurface = Enum.SurfaceType.Smooth
  22. handle.Parent = hyperlasergun
  23. handle.CFrame = CFrame.new(0.04, 0, 0.07) * CFrame.Angles(2.68, -0.171, -2.852)
  24. mesh.MeshType = Enum.MeshType.FileMesh
  25. mesh.Scale = Vector3.new(0.65, 0.65, 0.65)
  26. mesh.MeshId = "http://www.roblox.com/asset/?id=130099641"
  27. mesh.TextureId = "http://www.roblox.com/asset/?id=130093033"
  28. mesh.Parent = handle
  29. fire.SoundId = "http://www.roblox.com/asset?id=130113322"
  30. fire.Name = "Fire"
  31. fire.Parent = handle
  32. reload.SoundId = "http://www.roblox.com/asset?id=130113370"
  33. reload.Name = "Reload"
  34. reload.Parent = handle
  35. pointlight.Color = Color3.new(0, 1, 1)
  36. pointlight.Range = 6
  37. pointlight.Parent = handle
  38. hitfade.SoundId = "http://www.roblox.com/asset?id=130113415"
  39. hitfade.Name = "HitFade"
  40. hitfade.Parent = handle
  41. thumbnailcamera.FieldOfView = 30
  42. thumbnailcamera.Name = "ThumbnailCamera"
  43. thumbnailcamera.Focus = CFrame.new(0.094, 0.01, 0.142)
  44. thumbnailcamera.CFrame = CFrame.new(-3.128, 0.971, 2.213) * CFrame.Angles(-0.435, -0.954, -0.362)
  45. thumbnailcamera.Parent = hyperlasergun
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement