View difference between Paste ID: BYgEZCX0 and ipRZUMPf
SHOW: | | - or go back to the newest paste.
1
wait(10)
2
--Start the script
3-
local Plr = game.Players.LocalPlayer
3+
Plr = game.Players.Doodlez413
4
--Instance.new
5-
local Tool = Instance.new("Tool", game.Workspace)
5+
Tool = Instance.new("Tool", game.Workspace)
6
Tool.TextureId = "http://www.roblox.com/asset/?id=464006953"
7
Tool.Name = "Mtn Dew"
8-
local Handle = Instance.new("Part", Tool)
8+
Handle = Instance.new("Part", Tool)
9
Handle.Name = "Handle"
10-
local Mesh = Instance.new("SpecialMesh", Handle)
10+
Mesh = Instance.new("SpecialMesh", Handle)
11
Mesh.MeshType = "FileMesh"
12
Mesh.MeshId = "http://www.roblox.com/asset/?id=444668962"
13-
local Txture = Instance.new("Decal", Handle)
13+
Txture = Instance.new("Decal", Handle)
14
Txture.Texture = "http://www.roblox.com/asset/?id=444668974"
15
Tool.GripPos = Vector3.new(0, 0, 0)
16
Tool.Parent = Plr.Backpack
17
--Sound
18-
local DS = Instance.new("Sound", Handle)
18+
DS = Instance.new("Sound", Handle)
19-
local OS = Instance.new("Sound", Handle) -- memes
19+
OS = Instance.new("Sound", Handle) -- memes
20
DS.SoundId = "http://www.roblox.com/asset/?id=475147513"
21
OS.SoundId = "http://www.roblox.com/asset/?id=0"
22
--I PLAY POKEMON GO EVERYDAY
23
Tool.Equipped:connect(function()
24
    Tool.GripPos = Vector3.new(0, 0, 0)
25
    OS:Play()
26
end)
27
 
28
Tool.Activated:connect(function()
29
    DS:Play()
30
    Tool.GripPos = Vector3.new(0, 0, 0)
31
    wait(2)
32
    Tool.GripPos = Vector3.new(0, 0, 0)
33
end)