View difference between Paste ID: EDGk0EsA and aYbHrmPa
SHOW: | | - or go back to the newest paste.
1-
Tool = Instance.new("Tool")
1+
Burger = Instance.new("Tool")
2-
Part = Instance.new("Part")
2+
Ham = Instance.new("Part")
3-
Part.Name = "Handle"
3+
Ham.Name = "Handle"
4-
Part.Parent = Tool
4+
Ham.Parent = Burger
5-
Tool.Parent = workspace.Lucas_YT111 -- replace name
5+
Burger.Name = "Burgr"
6
Burger.GripPos = Vector3.new(0,0,0.25)
7-
Mesh.Parent = Part
7+
Burger.Parent = workspace.Lucas_YT111 -- change name
8-
Mesh.MeshId = "http://www.roblox.com/asset/?id=12221720"
8+
9-
Mesh.TextureId = "http://www.roblox.com/asset/?id=12224218"
9+
Mesh.Parent = Ham
10
Mesh.MeshId = "http://www.roblox.com/asset/?id=16646125"
11-
Tool = script.Parent
11+
Mesh.TextureId = "http://www.roblox.com/asset/?id=16432575"
12
Mesh.Scale = Vector3.new(1, 1, 1)
13
local eatinglol = Instance.new("Sound", owner.character.Head)
14
eatinglol.SoundId = "rbxassetid://3045939054"
15
eatinglol.Volume = 1.5
16
eatinglol.Looped = true
17
18
Burger.Unequipped:Connect(function()
19
eatinglol:Stop()
20
end)
21
22
Burger.Equipped:Connect(function()
23
eatinglol:Play()
24
end)