View difference between Paste ID: 2d71QHhH and XfNxLZbF
SHOW: | | - or go back to the newest paste.
1
local p = game.Players.LocalPlayer
2
local char = p.Character
3
local hed = char.Head
4
local LocalPlayer = p
5-
hum.char.MaxHealth = math.huge
5+
6
naeeym.Size = UDim2.new(0,100,0,40)
7-
hum.char.Health =  hum.char.MaxHealth
7+
8-
hum.char = game.Players.LocalPlayer.Character.Humanoid
8+
9
local tecks = Instance.new("TextLabel",naeeym)
10
tecks.BackgroundTransparency = 1
11
tecks.BorderSizePixel = 0
12
tecks.Text = LocalPlayer.Name
13
tecks.Font = "ArialBold"
14
tecks.FontSize = "Size24"
15
tecks.TextStrokeTransparency = 0
16
tecks.TextStrokeColor3 = Color3.new(0,0,0)
17
tecks.TextColor3 = Color3.new(255,255,255)
18
tecks.Size = UDim2.new(1,0,0.5,0)
19
20
local Player = game.Players.localPlayer
21
local Character = p.Character
22
local LeftArm2 = Character["Left Arm"]
23
local RightArm2 = Character["Right Arm"]
24
local LeftLeg2 = Character["Left Leg"]
25
local RightLeg2 = Character["Right Leg"]
26
local Head2 = Character.Head
27
local Torso2 = Character.Torso
28
29
--created by SoldierJoao
30
--Credits to metabee for the knives edit
31
cut = Instance.new("Sound", Character)
32
cut.SoundId = "https://www.roblox.com/asset/?id=97095069"
33
cut.Volume = 1.5
34
thri = Instance.new("Sound", Character)
35
thri.SoundId = "https://www.roblox.com/asset/?id=186311262"
36
thri.Volume = 2.5
37
WRY = Instance.new("Sound", Character)
38
WRY.SoundId = "https://www.roblox.com/asset/?id=276152532"
39
WRY.Volume = 5
40
41
local Players=game:service'Players'
42
local Player=Players.LocalPlayer
43
local Mouse=Player:GetMouse''
44
local RenderStepped=game:service'RunService'.RenderStepped
45
46
local MeshId='http://www.roblox.com/asset?id=202083123'
47
local TextureId='http://www.roblox.com/asset/?id=189436355'
48
49
local BeeSpeed= 100
50
51
local QHold=false
52
local EHold=false
53
54
Mouse.Button1Down:connect(function()
55
cut:Play()
56
if Mouse.Target then
57
local Bee=Instance.new('Part',Player.Character)
58
Bee.CanCollide=false
59
Bee.Size=Vector3.new(2,2,2)
60
Bee.CFrame=Player.Character.Torso.CFrame
61
local BeeMesh=Instance.new('SpecialMesh',Bee)
62
BeeMesh.MeshType='FileMesh'
63
BeeMesh.MeshId=MeshId
64
BeeMesh.TextureId=TextureId
65
BeeMesh.Scale=Vector3.new(1,1,1)
66
local BodyVel=Instance.new('BodyVelocity',Bee)
67
BodyVel.maxForce=Vector3.new(math.huge,math.huge,math.huge)
68
local BodyGyro=Instance.new('BodyGyro',Bee)
69
BodyGyro.maxTorque=Vector3.new(math.huge,math.huge,math.huge)
70
BodyGyro.P=2e4
71
coroutine.wrap(function()
72
RenderStepped:connect(function()
73
BodyGyro.cframe=CFrame.new(Bee.Position,Mouse.Hit.p)
74
BodyVel.velocity=Bee.CFrame.lookVector*BeeSpeed
75
end)
76
end)()
77
Bee.Touched:connect(function(p)
78
if p.Parent~=Player.Character and p.Parent:FindFirstChild'Humanoid'then
79
p.Parent:BreakJoints()
80
Bee:Destroy''
81
thri:Play()
82
end
83
end)
84
end
85
end)
86
87
88
Mouse.KeyDown:connect(function(k)
89
local Key=k:lower''
90
if Key=='q'then
91
QHold=true
92
elseif Key=='e'then
93
EHold=true
94
end
95
end)
96
97
Mouse.KeyUp:connect(function(k)
98
local Key=k:lower''
99
if Key=='q'then
100
QHold=false
101
elseif Key=='e'then
102
EHold=false
103
end
104
end)
105
106
coroutine.wrap(function()
107
RenderStepped:connect(function()
108
if QHold then
109
if BeeSpeed>0 then
110
BeeSpeed=BeeSpeed-1
111
end
112
elseif EHold then
113
BeeSpeed=BeeSpeed+1
114
end
115
end)
116
end)()
117
118
119
120
121
mse = Player:GetMouse()
122
123
124
sound = Instance.new("Sound", Character)
125
sound.SoundId = "https://www.roblox.com/asset/?id=290810519"
126
sound.Volume = 2.5
127
sound2 = Instance.new("Sound", Character)
128
sound2.SoundId = "https://www.roblox.com/asset/?id=274698941"
129
sound2.Volume = 3
130
sound3 = Instance.new("Sound", Character)
131
sound3.SoundId = "https://www.roblox.com/asset/?id=290807397"
132
sound3.Volume = 2
133
TSTheme = Instance.new("Sound", Character)
134
TSTheme.SoundId = "https://www.roblox.com/asset/?id=172374380"
135
TSTheme.Volume = 2
136
canworld = true
137
mse.KeyDown:connect(function(key)
138
	key = key:lower()
139
	if key == "t" then
140
		if canworld == false then return end
141
		if canworld then
142
		canworld = false
143
		sound2:Play()
144
tecks.Text = "THE WORLD STOP TIME!"
145
wait(2)
146
tecks.Text = LocalPlayer.Name
147
		sound3:Play()
148
		TSTheme:Play()
149
150
		local function spawnpart()
151
		sphere = Instance.new("Part")
152
		--game.Debris:AddItem(sphere,3)
153
		local sm = Instance.new("SpecialMesh", sphere)
154
		sm.MeshType = "Sphere"
155
		sphere.Transparency = 0.5
156
		sphere.Anchored = true
157
		sphere.CanCollide = false
158
		sphere.Material = "Neon"
159
		sphere.BrickColor = BrickColor.new("Black")
160
		end
161
		
162
		local function weld(lol)
163
			local weld = Instance.new("Weld", Player.Character.Torso)
164
			weld.Part0 = Player.Character.Torso
165
			weld.Part1 = lol
166
			weld.C0 = Player.Character.Torso.CFrame:inverse()
167
			weld.C1 = lol.CFrame:inverse()
168
		end
169
		wait()
170
		spawnpart()
171
			for i, v in pairs(game.Players:GetChildren()) do
172
			t = v.Character:FindFirstChild("Torso")
173
			if t then
174
				t.Anchored = true
175
				Player.Character:FindFirstChild("Torso").Anchored = false
176
			end
177
			RA = v.Character:FindFirstChild("Right Arm")
178
			if RA then
179
				RA.Anchored = true
180
				Player.Character:FindFirstChild("Right Arm").Anchored = false
181
			end
182
			LA = v.Character:FindFirstChild("Left Arm")
183
			if LA then
184
				LA.Anchored = true
185
				Player.Character:FindFirstChild("Left Arm").Anchored = false
186
			end
187
			RL = v.Character:FindFirstChild("Right Leg")
188
			if RL then
189
				RL.Anchored = true
190
				Player.Character:FindFirstChild("Right Leg").Anchored = false
191
			end
192
			LL = v.Character:FindFirstChild("Left Leg")
193
			if LL then
194
				LL.Anchored = true
195
				Player.Character:FindFirstChild("Left Leg").Anchored = false
196
			end
197
		end
198
		weld(sphere)
199
		cce = Instance.new("ColorCorrectionEffect", game.Lighting)
200
		cce.Saturation = -5
201
		--game.Debris:AddItem(cce, 5)
202
		sphere.Parent = Character.Torso
203
		for i = 1,3 do
204
			sphere.Size = sphere.Size + Vector3.new(50,50,50)
205
			wait()
206
			end
207
wait()
208
                        sphere:Destroy()
209
BeeSpeed = 0
210
		cce.Saturation = -0.1
211
		wait(0.3)
212
		cce.Saturation = -0.2
213
		wait(0.3)
214
		cce.Saturation = -0.3
215
		wait(0.2)
216
	        cce.Saturation = -1.5
217
                wait()
218
		end
219
	end
220
end
221
)
222
223
tecks.Text = LocalPlayer.Name
224
225
mse.KeyDown:connect(function(key)
226
	key = key:lower()
227
	if key == "y" then
228
canworld = true
229
tecks.Text = "Time continues moving again."
230
		sound:Play()
231
wait()
232
BeeSpeed = 1
233
		cce.Saturation = -1.3
234
		wait(0.5)
235
BeeSpeed = 1.2
236
		cce.Saturation = -0.5
237
		wait(0.5)
238
BeeSpeed = 1.4
239
		cce.Saturation = -0.4
240
		wait(0.3)
241
BeeSpeed = 1.5
242
		cce.Saturation = -0.2
243
		wait(0.2)
244
	        cce.Saturation = 0
245
246
		for i, v in pairs(game.Players:GetChildren()) do
247
		t = v.Character:FindFirstChild("Torso")
248
			if t then
249
				t.Anchored = false
250
			end
251
			RA = v.Character:FindFirstChild("Right Arm")
252
			if RA then
253
				RA.Anchored = false
254
			end
255
			LA = v.Character:FindFirstChild("Left Arm")
256
			if LA then
257
				LA.Anchored = false
258
			end
259
			RL = v.Character:FindFirstChild("Right Leg")
260
			if RL then
261
				RL.Anchored = false
262
			end
263
			LL = v.Character:FindFirstChild("Left Leg")
264
			if LL then
265
				LL.Anchored = false
266
			end
267
		end
268
BeeSpeed = 100
269
tecks.Text = LocalPlayer.Name
270
TSTheme:Stop()
271
end
272
end)
273
274
hum = game.Players.LocalPlayer.Character.Humanoid
275
276
hum.MaxHealth = math.huge
277
278
wait()
279
280
hum.Health =  hum.MaxHealth
281
282
hum = game.Players.LocalPlayer.Character.Humanoid