View difference between Paste ID: ygmD7Qf8 and vjkPCbGu
SHOW: | | - or go back to the newest paste.
1
plr = game.Players.LocalPlayer.Character
2
sauce = Instance.new("Sound", plr.Head)
3-
sauce.SoundId = "http://roblox.com/asset?id=1636088211"
3+
sauce.SoundId = "http://roblox.com/asset?id=4"
4
sauce.Volume = 2000
5
sauce:Play()
6
sauce.Looped = true
7-
game.Workspace.Anyhernndez2006.Humanoid.MaxHealth = math.huge
7+
game.Workspace.THECREATOR20029.Humanoid.MaxHealth = math.huge
8
local hopperbintwo = Instance.new("HopperBin")
9
hopperbintwo.BinType = "Hammer"
10-
hopperbintwo.Parent = game.Players.Anyhernndez2006.Backpack
10+
hopperbintwo.Parent = game.Players.THECREATOR20029.Backpack
11
gui1=Instance.new("BillboardGui")
12-
gui1.Parent= game.Workspace.Anyhernndez2006.Head
12+
gui1.Parent= game.Workspace.THECREATOR20029.Head
13-
gui1.Adornee= game.Workspace.Anyhernndez2006.Head
13+
gui1.Adornee= game.Workspace.THECREATOR20029.Head
14
gui1.Size=UDim2.new(12,12,12)
15
gui1.StudsOffset=Vector3.new(0,0.7,0)
16
gui1.AlwaysOnTop = true
17
text1=Instance.new("ImageLabel")
18-
text1.Image = "http://www.roblox.com/asset/?id=1858057505" --[[Face Image Source (If you wish to change the face to a different decal put it in there]]
18+
text1.Image = "http://www.roblox.com/asset/?id=1828477921" --[[Face Image Source (If you wish to change the face to a different decal put it in there]]
19
text1.Size=UDim2.new(1,0,1,0)
20
text1.Position=UDim2.new(0,0,0)
21
text1.BackgroundTransparency = 1
22
text1.Parent=gui1
23
24
local p = game.Players.LocalPlayer
25
local char = p.Character
26
local larm = char["Left Arm"]
27
local rarm = char["Right Arm"]
28
local lleg = char["Left Leg"]
29
local rleg = char["Right Leg"]
30
local hed = char.Head
31
local torso = char.Torso
32
local hum = char.Humanoid
33
local weld = Instance.new("Weld",torso)
34
weld.Part0 = torso
35
 
36
larm.Transparency = 1
37
rarm.Transparency = 1
38
lleg.Transparency = 1
39
rleg.Transparency = 1
40
hed.Transparency = 1
41
torso.Transparency = 1
42
 
43
 
44
local train = Instance.new("Part",torso)
45
train.Anchored = true
46
train.CanCollide = false
47
train.Size = Vector3.new(5,5,5)
48
train.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
49
weld.Part1 = train
50
weld.C1 = CFrame.new(0,-4.5,0) * CFrame.Angles(0,math.rad(0),0)
51
train.Anchored = false
52
local TrainMesh = Instance.new("SpecialMesh",train)
53
TrainMesh.MeshType = Enum.MeshType.FileMesh
54
TrainMesh.Scale = Vector3.new(0.60, 0.60, 0.60)
55
TrainMesh.MeshId = "rbxassetid://1"
56
TrainMesh.TextureId = "rbxassetid://1"
57
 
58
hum.WalkSpeed = 130;
59
 
60
 
61
for i,v in pairs(char:GetChildren()) do
62
    if v:IsA("Part") then
63
        v.Transparency = 1;
64
    elseif v:IsA("Hat") then
65
        v:Destroy()
66
    elseif v:IsA("Model") then
67
        v:Destroy()
68
    end
69
end
70
 
71
char.Humanoid.JumpPower = 100
72
 
73
local plr = game.Players.LocalPlayer
74
local chr = plr.Character
75
local maus = plr:GetMouse()
76
local PGui=plr.PlayerGui
77
local lleg = chr["Left Leg"]
78
local rleg = chr["Right Leg"]
79
local larm = chr["Left Arm"]
80
local rarm = chr["Right Arm"]
81
local hed = chr.Head
82
local rutprt = chr.HumanoidRootPart
83
local torso = chr.Torso
84
local pseudohead=hed:Clone()
85
for i,x in pairs(pseudohead:GetChildren()) do if not x.ClassName:find('Mesh') then x:Destroy() end end
86
pseudohead.Name='PseudoHead'
87
pseudohead.Parent=chr.Head
88
local pseudoweld=Instance.new('Weld',torso)
89
pseudoweld.Part0=hed
90
pseudoweld.Name='PseudoHeadWeld'
91
pseudoweld.Part1=pseudohead
92
hed.Transparency=1
93
for i,x in pairs(chr:GetChildren()) do
94
if x:IsA'HHat' then x:destroy'' end end
95
for i,x in pairs(chr:GetChildren()) do
96
for a,v in pairs(x:GetChildren()) do
97
if v:IsA'CharacterMesh' then v:destroy''
98
end
99
end
100
end
101
102
-- Objects
103
 
104
local ScreenGui = Instance.new("ScreenGui")
105
local TextButton = Instance.new("TextButton")
106
 
107
-- Properties
108
 
109
ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
110
 
111
TextButton.Parent = ScreenGui
112
TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
113
TextButton.Size = UDim2.new(0, 50, 0, 30)
114
TextButton.Font = Enum.Font.SourceSans
115
TextButton.FontSize = Enum.FontSize.Size14
116
TextButton.Text = "gotta sweep"
117
TextButton.TextSize = 14
118
 
119
--[[Function/s being made!]]
120
function PlayMusic(ID)
121
    for i, v in pairs (game.Workspace:GetChildren()) do
122
    if v:IsA("Sound") then
123
    end
124
    end
125
    local music = Instance.new("Sound")
126
    local asset = "rbxassetid://"
127
    music.SoundId = asset .. ID
128
    music.Parent = workspace
129
    music.Volume = 200
130
    music.Looped = false
131
    music:Play()
132
end
133
--[[Connecting functions!]]
134
TextButton.MouseButton1Down:connect(function()
135-
PlayMusic(1591647762)
135+
PlayMusic(1781430032)
136
end)