Advertisement
lllkkklkk

Big Gun

Aug 13th, 2024
1,324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {
  2. Title = "HEY!", -- Required
  3. Text = "Gun has been added.", -- Required
  4. Icon = "http://www.roblox.com/asset/?id=748234580" -- Optional
  5. })
  6. local tool = Instance.new("Tool")
  7. tool.Name = "Gun"
  8. tool.RequiresHandle = true
  9. tool.Parent = game.Players.LocalPlayer.Backpack
  10.  
  11. local handle = Instance.new("Part")
  12. handle.Name = "Handle"
  13. handle.Size = Vector3.new(1, 1, 1)
  14. handle.Parent = tool
  15.  
  16. local mesh = Instance.new("SpecialMesh")
  17. mesh.MeshId = "rbxassetid://568634722"
  18. mesh.TextureId = "rbxassetid://568634915"
  19. mesh.Scale = Vector3.new(3, 3, 3)
  20. mesh.Parent = handle
  21.  
  22. tool.GripForward = Vector3.new(0, 0, -1)
  23. tool.GripPos = Vector3.new(0, 0, 0)
  24. tool.GripRight = Vector3.new(1, 0, 0)
  25. tool.GripUp = Vector3.new(0, 1, 0)
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement