SHOW:
|
|
- or go back to the newest paste.
1 | --[[ | |
2 | %Name : firegame87 | |
3 | %Version : Lua 5.1 | |
4 | %Script : Local | |
5 | --]] | |
6 | - | id = ID HERE |
6 | + | id = 892899189 |
7 | player = game.Players.LocalPlayer | |
8 | tool = Instance.new("Tool" , player.Backpack) | |
9 | tool.TextureId = "rbxassetid://212303004" | |
10 | handle = Instance.new("Part" , tool) | |
11 | handle.Name = "Handle" | |
12 | handle.Size = Vector3.new(3.2, 1.6, 1.2) | |
13 | mesh = Instance.new("SpecialMesh" , handle) | |
14 | mesh.MeshId = "http://www.roblox.com/asset/?id=212302951" | |
15 | mesh.TextureId = "http://www.roblox.com/asset/?id=212303049" | |
16 | mesh.Scale = Vector3.new(4, 4, 4) | |
17 | tool.GripForward = Vector3.new(1, 0, 0) | |
18 | tool.GripPos = Vector3.new(1, -1.25, 0) | |
19 | tool.GripRight = Vector3.new(0, 0, 1) | |
20 | tool.GripUp = Vector3.new(0, 1, 0) | |
21 | tool.Equipped:connect(function(mouse) | |
22 | son = Instance.new("Sound" , handle) | |
23 | son.Looped = true | |
24 | son.Volume = 100 | |
25 | son.SoundId = "rbxassetid://"..id | |
26 | son:Play() | |
27 | end) | |
28 | tool.Unequipped:connect(function(mouse) | |
29 | son:Remove() | |
30 | end) |