View difference between Paste ID: kdNRvYUW and M3KRnxXb
SHOW: | | - or go back to the newest paste.
1
--https://github.com/Mokiros/roblox-FE-compatibility
2
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
3
local Player,game,owner = owner,game
4-
plr = game.Players.LocalPlayer
4+
local RealPlayer = Player
5
do
6
	print("FE Compatibility code V2 by Mokiros")
7
	local RealPlayer = RealPlayer
8
	script.Parent = RealPlayer.Character
9
10
	--Fake event to make stuff like Mouse.KeyDown work
11
	local Disconnect_Function = function(this)
12
		this[1].Functions[this[2]] = nil
13
	end
14
	local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
15
	local FakeEvent_Metatable = {__index={
16
		Connect = function(this,f)
17
			local i = tostring(math.random(0,10000))
18
			while this.Functions[i] do
19
				i = tostring(math.random(0,10000))
20
			end
21
			this.Functions[i] = f
22
			return setmetatable({this,i},Disconnect_Metatable)
23
		end
24
	}}
25
	FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
26
	local function fakeEvent()
27
		return setmetatable({Functions={}},FakeEvent_Metatable)
28
	end
29
30
	--Creating fake input objects with fake variables
31
    local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
32
    FakeMouse.keyUp = FakeMouse.KeyUp
33
    FakeMouse.keyDown = FakeMouse.KeyDown
34
	local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
35
	local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
36
		CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
37
	end}
38
	--Merged 2 functions into one by checking amount of arguments
39
	CAS.UnbindAction = CAS.BindAction
40
41
	--This function will trigger the events that have been :Connect()'ed
42
	local function TriggerEvent(self,ev,...)
43
		for _,f in pairs(self[ev].Functions) do
44
			f(...)
45
		end
46
	end
47
	FakeMouse.TriggerEvent = TriggerEvent
48
	UIS.TriggerEvent = TriggerEvent
49
50
	--Client communication
51
	local Event = Instance.new("RemoteEvent")
52
	Event.Name = "UserInput_Event"
53
	Event.OnServerEvent:Connect(function(plr,io)
54
	    if plr~=RealPlayer then return end
55
		FakeMouse.Target = io.Target
56
		FakeMouse.Hit = io.Hit
57
		if not io.isMouse then
58
			local b = io.UserInputState == Enum.UserInputState.Begin
59
			if io.UserInputType == Enum.UserInputType.MouseButton1 then
60
				return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
61
			end
62
			if io.UserInputType == Enum.UserInputType.MouseButton2 then
63
				return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
64
			end
65
			for _,t in pairs(CAS.Actions) do
66
				for _,k in pairs(t.Keys) do
67
					if k==io.KeyCode then
68
						t.Function(t.Name,io.UserInputState,io)
69
					end
70
				end
71
			end
72
			FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
73
			UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
74
	    end
75
	end)
76
	Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
77
	local Mouse = owner:GetMouse()
78
	local UIS = game:GetService("UserInputService")
79
	local input = function(io,RobloxHandled)
80
		if RobloxHandled then return end
81
		--Since InputObject is a client-side instance, we create and pass table instead
82
		Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
83
	end
84
	UIS.InputBegan:Connect(input)
85
	UIS.InputEnded:Connect(input)
86
87
	local h,t
88
	--Give the server mouse data every second frame, but only if the values changed
89
	--If player is not moving their mouse, client won't fire events
90
	local HB = game:GetService("RunService").Heartbeat
91
	while true do
92
		if h~=Mouse.Hit or t~=Mouse.Target then
93
			h,t=Mouse.Hit,Mouse.Target
94
			Event:FireServer({isMouse=true,Target=t,Hit=h})
95
		end
96
		--Wait 2 frames
97
		for i=1,2 do
98
			HB:Wait()
99
		end
100
	end]==],script)
101
102
	----Sandboxed game object that allows the usage of client-side methods and services
103
	--Real game object
104
	local RealGame = game
105
106
	--Metatable for fake service
107
	local FakeService_Metatable = {
108
		__index = function(self,k)
109
			local s = rawget(self,"_RealService")
110
			if s then
111
				return typeof(s[k])=="function"
112
				and function(_,...)return s[k](s,...)end or s[k]
113
			end
114
		end,
115
		__newindex = function(self,k,v)
116
			local s = rawget(self,"_RealService")
117
			if s then s[k]=v end
118
		end
119
	}
120
	local function FakeService(t,RealService)
121
		t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
122
		return setmetatable(t,FakeService_Metatable)
123
	end
124
125
	--Fake game object
126
	local FakeGame = {
127
		GetService = function(self,s)
128
			return rawget(self,s) or RealGame:GetService(s)
129
		end,
130
		Players = FakeService({
131
			LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
132
		},"Players"),
133
		UserInputService = FakeService(UIS,"UserInputService"),
134
		ContextActionService = FakeService(CAS,"ContextActionService"),
135
		RunService = FakeService({
136
			_btrs = {},
137
			RenderStepped = RealGame:GetService("RunService").Heartbeat,
138
			BindToRenderStep = function(self,name,_,fun)
139
				self._btrs[name] = self.Heartbeat:Connect(fun)
140
			end,
141
			UnbindFromRenderStep = function(self,name)
142
				self._btrs[name]:Disconnect()
143
			end,
144
		},"RunService")
145
	}
146
	rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
147
	FakeGame.service = FakeGame.GetService
148
	FakeService(FakeGame,game)
149
	--Changing owner to fake player object to support owner:GetMouse()
150
	game,owner = FakeGame,FakeGame.Players.LocalPlayer
151
end
152
153
--[[Hell toast by vlad20020--
154
	Im a bit crappy scripter but its ok.
155
--]]
156
plr = owner
157
char = plr.Character
158
ra = char["Right Arm"]
159
la = char["Left Arm"]
160
rl = char["Right Leg"]
161
ll = char["Left Leg"]
162
h = char.Head
163
t = char.Torso
164
mouse = plr:GetMouse()
165
tweens = game:GetService("TweenService")
166
print("Made by vlad20020")
167
warn([[
168
	Q - I still dont know how to name this attack
169
	E - Toast smash
170
	R - Just bit the toast
171
	T - Dead sky
172
	F - Punch
173
	G - Stomp(Works only if dud stunned)
174
	Z - Sit
175
	X - Teleport
176
	C - Crouch + Half invisiblity
177
	V - *CrUnCh*
178
	Y - Throw Toast(Heals)
179
	N - Fix character
180
	B - Summon an explosion(Aim)
181
	H - Cut the throat(Target)
182
	J - Kaboom!
183
	U - Bread Grenade
184
	N - Decapitate(Target)
185
	M - T-Pose dance
186
	1 - Randomly change music
187
	Click - Slap]])
188
---------------
189
rs = t["Right Shoulder"]
190
ls = t["Left Shoulder"]
191
rh = t["Right Hip"]
192
lh = t["Left Hip"]
193
nec = t.Neck
194
rut = char.HumanoidRootPart
195
rutj = rut.RootJoint
196
hum = char.Humanoid
197
using = false
198
eating = false
199
it = Instance.new
200
---I took it from shackluster`s script lol---
201
------Part Creation------
202
function CreatePart( parent, material, reflectance, transparency, brickcolor, name, size, anchor,cancollide)
203
	local NEWPART = Instance.new("Part")
204
	NEWPART.Reflectance = reflectance
205
	NEWPART.Transparency = transparency
206
	NEWPART.CanCollide = false
207
	NEWPART.Locked = true
208
	NEWPART.Anchored = true
209
	NEWPART.CanCollide = cancollide
210
	if anchor == false then
211
		NEWPART.Anchored = false
212
	end
213
	NEWPART.BrickColor = BrickColor.new(tostring(brickcolor))
214
	NEWPART.Name = name
215
	NEWPART.Size = size
216
	NEWPART.Position = t.Position
217
	NEWPART.Material = material
218
	NEWPART:BreakJoints()
219
	NEWPART.Parent = parent
220
	return NEWPART
221
end
222
------Mesh Creation------
223
function createMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
224
	local NEWMESH = it(MESH)
225
	if MESH == "SpecialMesh" then
226
		NEWMESH.MeshType = MESHTYPE
227
		if MESHID ~= "nil" and MESHID ~= "" then
228
			NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
229
		end
230
		if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
231
			NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
232
		end
233
	end
234
	NEWMESH.Offset = OFFSET or Vector3.new(0, 0, 0)
235
	NEWMESH.Scale = SCALE
236
	NEWMESH.Parent = PARENT
237
	return NEWMESH
238
end
239
------Weld Creation------
240
function CreateWeld(Type, parent, part0, part1, C0, C1)
241
	local newweld = Instance.new(Type)
242
	newweld.Part0 = part0
243
	newweld.Part1 = part1
244
	newweld.C0 = C0
245
	newweld.C1 = C1
246
	newweld.Parent = parent
247
	return newweld
248
end
249
---------Ragdoll--------
250
at2 = t:findFirstChild("RightCollarAttachment") at2.Position = Vector3.new(1,.8,0)
251
at = Instance.new("Attachment",ra) at.Name = "oof" at.Position = Vector3.new(-.5,.8,0)
252
balls = Instance.new("BallSocketConstraint",ra) balls.Attachment0 = at2 balls.Attachment1 = at
253
at21 = t:findFirstChild("LeftCollarAttachment") at21.Position = Vector3.new(-1,.8,0) at21.Orientation = Vector3.new(0,180,0)
254
at1 = Instance.new("Attachment",la) at.Name = "oof" at1.Position = Vector3.new(.5,.8,0)
255
balls1 = Instance.new("BallSocketConstraint",la) balls1.Attachment0 = at21 balls1.Attachment1 = at1
256
nek = Instance.new("Attachment",h) nek.Position = Vector3.new(0,-.5,0) nball = Instance.new("BallSocketConstraint",h) nball.Attachment0 = nek nball.Attachment1 = t:findFirstChild("NeckAttachment")
257
owihatedis = Instance.new("Attachment",t) owihatedis.Position = Vector3.new(.6,-1,0) oihd = Instance.new("Attachment",rl) oihd.Position = Vector3.new(.1,1,0) oww = Instance.new("BallSocketConstraint",rl) oww.Attachment0 = owihatedis oww.Attachment1 = oihd
258
owihatedis2 = Instance.new("Attachment",t) owihatedis2.Position = Vector3.new(-.6,-1,0) oihd2 = Instance.new("Attachment",ll) oihd2.Position = Vector3.new(-.1,1,0) oww2 = Instance.new("BallSocketConstraint",ll) oww2.Attachment0 = owihatedis2 oww2.Attachment1 = oihd2
259
hum.Died:connect(function()
260
	mus:Destroy()
261
	rut:Destroy()
262
	local dying = Instance.new("Sound",char) dying.Volume = 5 dying.SoundId = "rbxassetid://475550904" dying:Play() hum.DisplayDistanceType = "None"
263
	local boom = Instance.new("Explosion",char) boom.Position = t.Position h.face.Texture = "http://www.roblox.com/asset/?id=41679365" boom.BlastRadius = 1
264
	ouch = Instance.new("Model",char) ouch1 = Instance.new("Part",ouch) ouch1.CFrame = h.CFrame ouch1.Size = Vector3.new(.4,.4,.4) ouch1.CanCollide = false ouch1.Name = "Head" ouch.Name = "OW"  ouch2 = Instance.new("Humanoid",ouch) ouch3 = Instance.new("Attachment",ouch1) ouch4 = Instance.new("BallSocketConstraint",ouch1) ouch4.Attachment0 = ouch3 ouch4.Attachment1 = h.FaceCenterAttachment
265
end)
266
----------------
267
local a13 = Instance.new("Sound",t) a13.SoundId = "rbxassetid://0" a13.Looped = true a13.Volume = 0 a13:Play()
268
local bochka = Instance.new("Sound",t) bochka.Looped = true bochka.SoundId = "rbxassetid://1287970292" bochka.Volume = 0 bochka:Play()
269
local tripoloski = Instance.new("Sound",t) tripoloski.Looped = true tripoloski.SoundId = "rbxassetid://689628356" tripoloski.Volume = 0 tripoloski:Play()
270
local cm = Instance.new("Sound",t) cm.Looped = true cm.EmitterSize = 30 cm.Volume = 0 cm.SoundId = "rbxassetid://213693358" cm:Play()
271
hum.MaxHealth = "inf" hum.Health = "inf" ff = Instance.new("ForceField",char) ff.Visible = false char.Animate.idle.Animation2:Destroy()
272
mus = Instance.new("Sound",t) mus.SoundId = "rbxassetid://1722896592" mus.Volume = 2 mus.Looped = true mus:Play()
273
--------------
274
brda = Instance.new("Part",char) brda.Transparency = 1 brda.CanCollide = false brda.Size = Vector3.new(1.248, 1.264, 0.16) brdam = Instance.new("SpecialMesh",brda) brdam.Scale = Vector3.new(0.003, 0.003, 0.003) brdam.MeshType = "FileMesh" brdam.MeshId = "rbxassetid://1614924885" brdam.TextureId = "rbxassetid://1614940093" brdaw = Instance.new("Weld",ra) brdaw.Part0 = ra brdaw.Part1 = brda brdaw.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,3) brdaw.C0 = brdaw.C0 * CFrame.new(0,1.3,0)
275
------Uuhh... Idk--------
276
mouse.KeyDown:connect(function(key)
277
	if key == "q" and not using then 
278
		using = true
279
	function die(hit)
280
	if hit.Parent ~= nil then
281
        local hum = hit.Parent:findFirstChildOfClass("Humanoid")
282
        if hum ~= nil then
283
	if hit.Parent == char then
284
		
285
		else
286
			hit:Destroy()
287
			end
288
		end
289
	end
290
	end
291
	aaa = Instance.new("Sound",t) aaa.SoundId = "rbxassetid://176238381" aaa.Volume = 2 aaa:Play()
292
	bread = Instance.new("Part",workspace) bread.CanCollide = false bread.Anchored = true bread.Position = mouse.Hit.p bread.CFrame = bread.CFrame * CFrame.new(0,30,0) bread.Size = Vector3.new(15.6, 15.8, 4) bread.Orientation = Vector3.new(90, 180, 0)
293
	bc = bread.Touched:connect(die)
294
	bmesh = Instance.new("SpecialMesh",bread) bmesh.MeshType = "FileMesh" bmesh.MeshId = "rbxassetid://1614924885" bmesh.TextureId = "rbxassetid://1614940093" bmesh.Scale = Vector3.new(0.035, 0.035, 0.035)
295
	hum.WalkSpeed = 0 hum.JumpPower = 0
296
	for i = 1,10 do
297
		bread.CFrame = bread.CFrame * CFrame.new(0,0,3)
298
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
299
		ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
300
		rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
301
		lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
302
		nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
303
		rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
304
		wait()
305
	end
306
	for i = 1,30 do
307
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
308
		ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
309
		rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
310
		lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
311
		nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
312
		rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
313
		wait()
314
	end
315
aaa:Destroy()
316
hum.WalkSpeed = 16 hum.JumpPower = 50
317
rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
318
ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
319
rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
320
lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
321
nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
322
rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
323
for i = 1,10 do
324
	bread.Transparency = bread.Transparency + .1
325
	wait()
326
end
327
	bread:Destroy()
328
	wait(.1)
329
	using = false
330
	end
331
end)
332
----------Toast smash-----------
333
mouse.KeyDown:connect(function(key)
334
	if key == "e" and not using then
335
		using = true
336
		function die(hit)
337
	if hit.Parent ~= nil then
338
        local hum = hit.Parent:findFirstChildOfClass("Humanoid")
339
        if hum ~= nil then
340
	if hit.Parent == char then
341
		
342
	else
343
            bd = Instance.new("Decal",hit) bd.Texture = "http://www.roblox.com/asset/?id=718043865" bd.Face = "Front"  bd.Transparency = .5
344
		bd1 = Instance.new("Decal",hit) bd1.Texture = "http://www.roblox.com/asset/?id=718043865" bd1.Face = "Back" bd1.Transparency = .5
345
		bd2 = Instance.new("Decal",hit) bd2.Texture = "http://www.roblox.com/asset/?id=718043865" bd2.Face = "Right" bd2.Transparency = .5
346
		bd3 = Instance.new("Decal",hit) bd3.Texture = "http://www.roblox.com/asset/?id=718043865" bd3.Face = "Left" bd3.Transparency = .5
347
		bd4 = Instance.new("Decal",hit) bd4.Texture = "http://www.roblox.com/asset/?id=718043865" bd4.Face = "Bottom" bd4.Transparency = .5
348
		bd5 = Instance.new("Decal",hit) bd5.Texture = "http://www.roblox.com/asset/?id=718043865" bd5.Face = "Top" bd5.Transparency = .5
349
			bme = Instance.new("SpecialMesh",hit) bme.MeshType = "Brick"
350
			hit.Size = hit.Size * Vector3.new(1,.5,1)
351
			for i = 1,10 do
352
				hit.Transparency = hit.Transparency +.1
353
				wait()
354
			end
355
			hit:Destroy()
356
			end
357
		end
358
	end
359
end
360
		hum.WalkSpeed = 0 hum.JumpPower = 0
361
		for i = 1,5 do
362
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.3,-.2,.6) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.3,.2,-.6) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(-.07,0,0) rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.1)
363
		wait()
364
		end
365
		han = Instance.new("Part",workspace) han.Size = Vector3.new(2,2,1) han.Transparency = 1 han.CanCollide = false hw = Instance.new("Weld",han) hw.Part0 = han hw.Part1 = t
366
		mb = Instance.new("Part",workspace) mb.Transparency = 1 mb.CFrame = t.CFrame rut.Anchored = true  mb.Size = Vector3.new(15.6, 15.8, 2) mm = Instance.new("SpecialMesh",mb) mm.MeshType = "FileMesh" mm.MeshId = "rbxassetid://1614924885" mm.TextureId = "rbxassetid://1614940093" mm.Scale = Vector3.new(0.035, 0.035, 0.035) mw = Instance.new("Weld",mb) mw.Part0 = mb mw.Part1 = han mw.C0 = mw.C0 * CFrame.new(0,-20,0)
367
		for i = 1,10 do
368
			mb.Transparency = mb.Transparency -.1
369
			wait()
370
		end	
371
		mc = mb.Touched:connect(die)
372
		for i = 1,5 do
373
			rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(.2,0,0) rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.24) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.24) hw.C0 = hw.C0 * CFrame.fromEulerAnglesXYZ(.18,0,0) hw.C0 = hw.C0 * CFrame.new(0,1.2,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.3,-.2,-.2) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.3,-.1,.1) nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
374
			wait()
375
		end	
376
		 han:Destroy() mb.Anchored = true
377
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
378
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
379
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
380
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
381
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
382
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
383
		hum.WalkSpeed = 16 hum.JumpPower = 50 rut.Anchored = false 
384
		wait(.5)
385
		mc:disconnect(die)
386
		wait(.5)
387
		for i = 1,10 do
388
			mb.Transparency = mb.Transparency +.1
389
			wait()
390
		end
391
		mb:Destroy()
392
		wait(.1)
393
		using = false
394
	end
395
end)
396
-----------Slap----------
397
function slap()
398
	if mouse.Button1Down and not using then
399
	using = true
400
function dmg(hit1)
401
	if hit1.Parent ~= nil then
402
        local hum = hit1.Parent:findFirstChildOfClass("Humanoid")
403
		local faic = hit1.Parent.Head:findFirstChildOfClass("Decal")
404
        if hum ~= nil then
405
	if hit1.Parent == char then
406
		
407
	else
408
	hum.MaxHealth = 100
409
	hum.Health = hum.Health -5
410
	hum.PlatformStand = true faic.Texture = "rbxassetid://1383895045"
411
	slap = Instance.new("Sound",brda) slap.Volume = 3 slap.SoundId = "rbxassetid://511340819"
412
	slap:Play()
413
	ogad = Instance.new("Weld",workspace) ogad.Part0 = hum.Parent.Torso ogad.Part1 = hum.Parent["Left Arm"] ogad.C0 = ogad.C0 * CFrame.fromEulerAnglesXYZ(0,0,4.7) ogad.C0 = ogad.C0 * CFrame.new(-.5,-2,0) ogad1 = Instance.new("Weld",workspace) ogad1.Part0 = hum.Parent.Torso ogad1.Part1 = hum.Parent["Right Arm"] ogad1.C0 = ogad1.C0 * CFrame.fromEulerAnglesXYZ(0,9.4,4.7) ogad1.C0 = ogad1.C0 * CFrame.new(-.5,-2,0) ogad2 = Instance.new("Weld",workspace) ogad2.Part0 = hum.Parent.Torso ogad2.Part1 = hum.Parent["Left Leg"] ogad2.C0 = ogad2.C0 * CFrame.new(-1,-1.6,0) ogad3 = Instance.new("Weld",workspace) ogad3.Part0 = hum.Parent.Torso ogad3.Part1 = hum.Parent["Right Leg"] ogad3.C0 = ogad3.C0 * CFrame.new(1,-1.6,0)
414
	ow = Instance.new("Decal",hum.Parent.Head) ow.Texture = "http://www.roblox.com/asset/?id=140321302" ow.Color3 = Color3.fromRGB(255,50,50) ow.Transparency = .5
415
	oof = Instance.new("Weld",workspace) oof.Part0 = hum.Parent.Head oof.Part1 = hum.Parent.Torso oof.C0 = oof.C0 * CFrame.new(0,-1.5,0) oof.C0 = oof.C0 * CFrame.fromEulerAnglesXYZ(0,.5,0)
416
	wait(1)
417
	slap:Destroy()
418
	hum.WalkSpeed = 0 hum.JumpPower = 0
419
	wait(4)
420
	hum.PlatformStand = false
421
	wait(3)
422
	hum.WalkSpeed = 16 hum.JumpPower = 50 
423
		end
424
	end
425
	end
426
	end
427
	brda.Transparency = 0
428
	for i = 1,5 do
429
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
430
		wait()
431
	end
432
	for i = 1,5 do
433
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.25,0,0)
434
		wait()
435
	end
436
	brda.CanCollide = true
437
	dmgg = brda.Touched:connect(dmg)
438
	for i = 1,5 do
439
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.4,0,0)
440
		wait()
441
	end
442
	dmgg:disconnect(dmg)
443
	for i = 1,5 do
444
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,0,-.33)
445
		wait()
446
	end
447
	brda.Transparency = 1
448
	brda.CanCollide = false
449
	rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
450
	using = false
451
	end
452
end
453
mouse.Button1Down:connect(slap)
454
-------------Dead Sky----------
455
mouse.KeyDown:connect(function(key)
456
	if key == "t" and not using then
457
		using = true
458
		function die1(hit)
459
			if hit.Parent ~= nil then
460
			local hum = hit.Parent:findFirstChildOfClass("Humanoid")
461
			if hum ~= nil then
462
			hit:Destroy()
463
			end
464
		end
465
		end
466
		for i = 1,6 do
467
			mus.Volume = mus.Volume -.5
468
			wait(.2)
469
		end
470
		hum.WalkSpeed = 70 hum.JumpPower = 120
471
		hum.DisplayDistanceType = "None" hum.HealthDisplayType = "AlwaysOff"
472
		game.Lighting.TimeOfDay = 0 game.Lighting.FogColor = Color3.fromRGB(0,0,0) game.Lighting.FogEnd = 20
473
		h.face.Transparency = 1		
474
		eh = Instance.new("Decal",h) eh.Texture = "http://www.roblox.com/asset/?id=1471407701"
475
		scm = Instance.new("Sound",workspace)  scm.Volume = 1 scm.SoundId = "rbxassetid://1569907462" scm:Play()
476
		hewill = Instance.new("Sound",workspace) hewill.Pitch = .9 hewill.Volume = 10 hewill.SoundId = "rbxassetid://689176850" hewill:Play()
477
		for i = 1,70 do
478
			nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(0,.0125,0)
479
			wait()
480
			nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(0,-.00625,0)
481
			wait()
482
		end
483
		wait(4.4)
484
		lau = Instance.new("Sound",t) lau.SoundId = "rbxassetid://138085838" lau.Volume = 5 lau:Play()
485
		hum.WalkSpeed = 0 hum.JumpPower = 0
486
		blid = Instance.new("Part",workspace) blid.Anchored = true blid.CanCollide = false blid.BrickColor = BrickColor.new("Crimson") blid.Material = "Neon" blid.Size = Vector3.new(1,.05,1) blid.CFrame = t.CFrame * CFrame.new(0,-2.85,0) bm = Instance.new("SpecialMesh",blid) bm.MeshType = "Sphere"
487
		for i = 1,15 do
488
			blid.Size = blid.Size + Vector3.new(1,0,1)
489
			rut.Anchored = true	
490
			wait()
491
		end
492
		hewill:Destroy()
493
		wot = Instance.new("Part",workspace) wot.CanCollide = false wot.Transparency = 1 wot.Size = Vector3.new(1000, 1000, 60) wot.Anchored = true wot.CFrame = t.CFrame * CFrame.new(0,100,0) wot.CFrame = wot.CFrame * CFrame.fromEulerAnglesXYZ(4.7,0,0) wot.BrickColor = BrickColor.new("Crimson") wot.Material = "Glass" wot.Transparency = 1 li = Instance.new("SurfaceLight",wot) li.Angle = 180 li.Brightness = 100 li.Color = Color3.fromRGB(255,0,0) li.Range = 100 li.Face = "Front" wot.Name = "onoweded" hum.WalkSpeed = 0 hum.JumpPower = 0
494
		dy3 = wot.Touched:connect(die1)
495
		for i = 1,5 do
496
			rutj.C0 = rutj.C0 * CFrame.new(0,0,-2.5)
497
			wot.Transparency = wot.Transparency -.14
498
			wait()
499
		end
500
		for i = 1,15 do
501
			blid.Size = blid.Size - Vector3.new(1,0,1)
502
			wait()
503
		end
504
		blid.Transparency = 1
505
		for i = 1,14 do
506
			wot.CFrame = wot.CFrame * CFrame.new(0,0,-2.5)
507
			wait(.1)
508
		end	
509
		lau:Destroy()
510
		for i = 1,26 do
511
			wot.CFrame = wot.CFrame * CFrame.new(0,0,-2.5)
512
			wait(.1)
513
		end	
514
		wait(1)
515
		blid.Transparency = 0
516
		for i = 1,15 do
517
			blid.Size = blid.Size + Vector3.new(1,0,1)
518
			wait()
519
		end
520
		scm:Destroy()
521
		h.face.Transparency = 0 eh:Destroy()
522
		for i = 1,6 do
523
			mus.Volume = mus.Volume +.5
524
			wait()
525
		end
526
		for i = 1,7 do
527
			wot.Transparency = wot.Transparency +.1
528
			wait()
529
		end
530
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
531
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
532
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
533
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
534
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
535
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0) rutj.C0 = rutj.C0 * CFrame.new(0,0,-10)
536
		hum.DisplayDistanceType = "Viewer" hum.HealthDisplayType = "DisplayWhenDamaged"
537
		for i = 1,5 do
538
			rutj.C0 = rutj.C0 * CFrame.new(0,0,2)
539
			wait()
540
		end
541
		rut.Anchored = false wot:Destroy() hum.WalkSpeed = 16 hum.JumpPower = 50 game.Lighting.TimeOfDay = 14 game.Lighting.FogColor = Color3.fromRGB(191,191,191) game.Lighting.FogEnd = 100000
542
		for i = 1,10 do
543
			blid.Transparency = blid.Transparency +.1
544
			wait(.05)
545
		end 
546
		blid:Destroy()
547
		wait(.1)
548
		using = false
549
	end
550
end)
551
----------------Bit Toast-------------
552
mouse.KeyDown:connect(function(key)
553
	if key == "r" and not using and not eating then
554
		using = true
555
		eating = true
556
		for i = 1,10 do
557
			brda.Transparency = brda.Transparency -.1
558
			wait()
559
		end
560
		hum.WalkSpeed = 0 hum.JumpPower = 0
561
		for i  = 1,10 do
562
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.1,.07,.15) brdaw.C0 = brdaw.C0 * CFrame.fromEulerAnglesXYZ(.2,.15,.2)
563
			wait()
564
		end
565
		wait(.5)
566
		crunch = Instance.new("Sound",brda) crunch.Volume = 5 crunch.SoundId = "rbxassetid://181027147" crunch:Play()
567
		piece = Instance.new("Part",workspace) piece.BrickColor = BrickColor.new("Wheat") piece.Size = Vector3.new(.1,.1,.1) piece.TopSurface = "Smooth" piece.BottomSurface = "Smooth" piece.CFrame = h.CFrame * CFrame.new(.1,0,-.4)
568
		piece1 = Instance.new("Part",workspace) piece1.BrickColor = BrickColor.new("Deep orange") piece1.Size = Vector3.new(.1,.1,.1) piece1.TopSurface = "Smooth" piece1.BottomSurface = "Smooth" piece1.CFrame = h.CFrame * CFrame.new(0,0,-.5)
569
		piece2 = Instance.new("Part",workspace) piece2.BrickColor = BrickColor.new("Wheat") piece2.Size = Vector3.new(.1,.1,.1) piece2.TopSurface = "Smooth" piece2.BottomSurface = "Smooth" piece2.CFrame = h.CFrame * CFrame.new(0,.05,-.5)
570
		piece3 = Instance.new("Part",workspace) piece3.BrickColor = BrickColor.new("Wheat") piece3.Size = Vector3.new(.1,.1,.1) piece3.TopSurface = "Smooth" piece3.BottomSurface = "Smooth" piece3.CFrame = h.CFrame * CFrame.new(-.1,.1,-.6)
571
		piece4 = Instance.new("Part",workspace) piece4.BrickColor = BrickColor.new("Wheat") piece4.Size = Vector3.new(.1,.1,.1) piece4.TopSurface = "Smooth" piece4.BottomSurface = "Smooth" piece4.CFrame = h.CFrame * CFrame.new(-.1,.1,-.6)
572
		for i = 1,2 do
573
			nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
574
			wait()
575
		end
576
		happy = Instance.new("Decal",h) happy.Texture = "http://www.roblox.com/asset/?id=258591579" h.face.Transparency = 1
577
		wait(.07)
578
		for i  = 1,10 do
579
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,-.07,-.15) brdaw.C0 = brdaw.C0 * CFrame.fromEulerAnglesXYZ(-.2,-.15,-.2)
580
			nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(-.02,0,0)
581
			wait()
582
		end
583
		for i = 1,10 do
584
			brda.Transparency = brda.Transparency +.1
585
			wait()
586
		end
587
		crunch:Destroy() hum.WalkSpeed = 40 hum.JumpPower = 80
588
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) brdaw.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,3) brdaw.C0 = brdaw.C0 * CFrame.new(0,1.3,0)
589
		wait(.1)
590
		using = false
591
		for i = 1,10 do
592
			hum.WalkSpeed = 40 hum.JumpPower = 80
593
			wait(.5)
594
		end
595
		for i = 1,10 do
596
			piece.Transparency = piece.Transparency +.1
597
			piece1.Transparency = piece1.Transparency +.1
598
			piece2.Transparency = piece2.Transparency +.1
599
			piece3.Transparency = piece3.Transparency +.1
600
			piece4.Transparency = piece4.Transparency +.1
601
			wait()
602
		end
603
		piece:Destroy() piece1:Destroy() piece2:Destroy() piece3:Destroy() piece4:Destroy()
604
		for i = 1,30 do
605
			hum.WalkSpeed = 40 hum.JumpPower = 80
606
			wait(.5)
607
		end
608
		happy:Destroy() h.face.Transparency = 0
609
		hum.WalkSpeed = 16 hum.JumpPower = 50
610
		eating = false
611
		end
612
end)
613
-------------Sit--------------
614
mouse.KeyDown:connect(function(key)
615
	if key == "z" and not using then
616
		hum.WalkSpeed = 0 hum.JumpPower = 0
617
		rutj.C0 = rutj.C0 * CFrame.new(0,0,-1.9) 
618
		rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,-.2,.8) rh.C0 = rh.C0 * CFrame.new(1,.4,0)
619
		lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,.1,-1.5) lh.C0 = lh.C0 * CFrame.new(-.3,0,0)
620
		rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,1,1)
621
		ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,-.5,-.7)
622
	end
623
end)
624
mouse.KeyUp:connect(function(key)
625
	if key == "z" and not using then
626
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
627
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
628
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
629
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
630
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
631
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
632
		hum.WalkSpeed = 16 hum.JumpPower = 50
633
	end
634
end)
635
-------------Punch-------------
636
mouse.KeyDown:connect(function(key)
637
	if key == "f" and not using then
638
		using = true
639
			function punch(hit)
640
				if hit.Parent ~= nil then
641
					local huma = hit.Parent:findFirstChildOfClass("Humanoid")
642
					if hum ~= nil then
643
						ow = Instance.new("Sound",hit.Parent.Head) ow.Volume = 3 ow.SoundId = "rbxassetid://743886825" ow:Play()
644
						huma.MaxHealth = 100 huma.PlatformStand = true
645
						huma:TakeDamage(math.random(1,5))
646
						huma.Health = huma.Health -0
647
						blud = Instance.new("Part",hit.Parent.Head) blud.Material = "Glass" blud.Shape = "Ball" blud.Size = Vector3.new(.25,.25,.25) blud.BrickColor = BrickColor.new("Crimson") blud.CFrame = hit.Parent.Head.CFrame bludm = Instance.new("SpecialMesh",blud) bludm.MeshType = "Brick"
648
						wait(3)
649
						for i,v in pairs(hit.Parent.Head:GetChildren()) do
650
							if v:IsA("Part") then
651
								v.Transparency = v.Transparency +.1
652
								wait(.1)
653
							end
654
						end
655
						for i,v in pairs(hit.Parent.Head:GetChildren()) do
656
							if v:IsA("Part") then
657
								v:Destroy()
658
								wait()
659
							end
660
						end
661
						ow:Destroy() huma.PlatformStand = false
662
					end
663
				end
664
			end
665
			hb = Instance.new("Part",ra) hb.Size = Vector3.new(1,1,1) hbw = Instance.new("Weld",hb) hb.Transparency = 1 hbw.Part0 = ra hbw.Part1 = hb hbw.C0 = hbw.C0 * CFrame.new(0,-.5,0)
666
			for i = 1,5 do
667
			rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1)
668
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
669
			wait()
670
			end
671
			hb.Touched:connect(punch)
672
			wait(.2)
673
			for i = 1,5 do
674
				rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
675
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.16,0,0)
676
				wait()
677
			end
678
			for i,v in pairs(ra:GetChildren()) do
679
			if v:IsA("Part") then
680
				v:Destroy()
681
			end
682
		end
683
			for i = 1,10 do
684
				rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1)
685
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.154)
686
				wait()
687
			end
688
			rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,3.145,0)
689
		wait(.1)
690
		using = false
691
	end
692
end)
693
-------Teleport--------
694
mouse.KeyDown:connect(function(key)
695
	if key == "x" then
696
		t.CFrame = mouse.Hit * CFrame.new(0,2.5,0)
697
	end
698
end)
699
---------FINISH HIM---------
700
mouse.KeyDown:connect(function(key)
701
	if key == "g" and not using then
702
		using = true
703
		function awa(hit)
704
			if hit.Parent ~= nil then
705
				local humn = hit.Parent:findFirstChildOfClass("Humanoid")
706
				if humn ~= nil then
707
					if humn.PlatformStand == true then
708
						ow1 = Instance.new("Sound",hit.Parent.Head) ow1.Volume = 3 ow1.SoundId = "rbxassetid://743886825" ow1:Play() humn.Health = 0
709
					for i = 1,10 do
710
						blud1 = Instance.new("Part",hit.Parent.Head) blud1.Material = "Glass" blud1.CFrame = hit.Parent.Head.CFrame blud1.Size = Vector3.new(.25,.25,.25) blud1.BrickColor = BrickColor.new("Crimson") blud1.Shape = "Ball" blud1m = Instance.new("SpecialMesh",blud1) blud1m.MeshType = "Brick"
711
					end
712
					for i,v in pairs(hit.Parent.Head:GetChildren()) do
713
							if v:IsA("Part") then
714
								v.Transparency = v.Transparency +.1
715
								wait(.1)
716
							end
717
						end
718
						for i,v in pairs(hit.Parent.Head:GetChildren()) do
719
							if v:IsA("Part") then
720
								v:Destroy()
721
								wait()
722
							end
723
						end
724
					for i = 1,50 do
725
						humn.Health = 0
726
						wait()
727
					end
728
					ow1:Destroy()
729
					end
730
				end
731
			end
732
		end
733
		for i = 1,5 do
734
		rh.C0 = rh.C0 * CFrame.new(.17,.25,0) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(-.03,0,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,0.04,.17) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-0.1,-.04,-.17) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.05)
735
		wait()
736
		end
737
		hitbox = Instance.new("Part",rl) hitbox.Size = Vector3.new(1,1,1) hitbox.Transparency = 1 hw = Instance.new("Weld",hitbox) hw.Part0 = rl hw.Part1 = hitbox hw.C0 = hw.C0 * CFrame.new(0,-.5,0)
738
		wait(.3)
739
		hc = hitbox.Touched:connect(awa)
740
		for i = 1,5 do
741
			rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.03)
742
			rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
743
			nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
744
			rh.C0 = rh.C0 * CFrame.new(0,-.25,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.34) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,.34)
745
			wait()
746
		end
747
		for i,v in pairs(rl:GetChildren()) do
748
			if v:IsA("Part") then
749
				v:Destroy()
750
			end
751
		end
752
		for i = 1,5 do
753
			rh.C0 = rh.C0 * CFrame.new(-.17,0,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.1,0,.17) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.1,0,-.17) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(-.08,0,0) nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(-.1,0,0)
754
			wait()
755
		end
756
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
757
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
758
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
759
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
760
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
761
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
762
		wait(.1)
763
		using = false
764
	end
765
end)
766
----------Crouch------------
767
mouse.KeyDown:connect(function(key)
768
	if key == "c" and not using then
769
		hum.WalkSpeed = 7 hum.JumpPower = 20
770
		rutj.C0 = rutj.C0 * CFrame.new(0,0,-1) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(.5,0,0)
771
		nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(-.4,0,0)
772
		rh.C0 = rh.C0 * CFrame.new(.6,1,0) rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
773
		lh.C0 = lh.C0 * CFrame.new(-.6,1,0) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.33)
774
		for i,v in pairs(char:GetChildren()) do
775
			if v:IsA("Accessory") then
776
				v.Handle.Transparency = .8
777
			end
778
		end
779
		ra.Transparency = .8 la.Transparency = .8 rl.Transparency = .8 ll.Transparency = .8 t.Transparency = .8 h.Transparency = .8 h.face.Transparency = .8
780
	end
781
end)
782
mouse.KeyUp:connect(function(key)
783
	if key == "c" and not using then
784
		for i,v in pairs(char:GetChildren()) do
785
			if v:IsA("Accessory") then
786
				v.Handle.Transparency = 0
787
			end
788
		end
789
		ra.Transparency = 0 la.Transparency = 0 rl.Transparency = 0 ll.Transparency = 0 t.Transparency = 0 h.Transparency = 0 h.face.Transparency = 0
790
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
791
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
792
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
793
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
794
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
795
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
796
		hum.WalkSpeed = 16 hum.JumpPower = 50
797
	end
798
end)
799
------------CrUnCh------------
800
mouse.KeyDown:connect(function(key)
801
	if key == "v" and not using then
802
		using = true
803
		local bric = Instance.new("Part",char) bric.Name = "g0 d13 n00b" bric.Size = Vector3.new(4,6,4) bric.CanCollide = false bric.Transparency = 1 local bricw = Instance.new("Weld",bric) bricw.Part0 = t bricw.Part1 = bric
804
		function	smash(hit)
805
				if hit.Parent ~= nil then
806
					local bitc = hit.Parent:FindFirstChildOfClass("Humanoid")
807
					if bitc ~= nil then
808
						if hit.Parent == char then
809
							
810
						else
811
							local n00b = hit.Parent
812
							bric:Destroy()
813
							for i = 1,5 do
814
								rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1)
815
								rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,-.25,.35)
816
								wait()
817
							end
818
							wait(.4)
819
							rut.Anchored = true
820
							local prt = Instance.new("Part",ra) prt.Size = Vector3.new(1,1,1) prt.Transparency = 1 local pw = Instance.new("Weld",prt) pw.Part0 = ra pw.Part1 = prt pw.C0 = pw.C0 * CFrame.new(0,.5,0)
821
							local hw = Instance.new("Weld",prt) hw.Part0 = prt hw.Part1 = n00b.Head hw.C0 = hw.C0 * CFrame.new(0,-1.5,-2) * CFrame.fromEulerAnglesXYZ(1.55,0,3.1)
822
							for i = 1,2 do
823
								rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,1)
824
								rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,.5,.2)
825
								nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(0,.2,-.45)
826
								wait()
827
							end
828
							wait(1.5)
829
							for i = 1,10 do
830
									local bred = Instance.new("Part",n00b.Head) bred.Size = Vector3.new(0.624, 0.632, 0.08)
831
									local brd = Instance.new("SpecialMesh",bred) brd.MeshType = "FileMesh" brd.MeshId = "rbxassetid://1614924885" brd.TextureId = "rbxassetid://1614940093" brd.Scale = Vector3.new(0.002,0.002,0.002)
832
									bred.CFrame = n00b.Head.CFrame
833
							end
834
							local pe = Instance.new("ParticleEmitter",n00b.Head) pe.Color = ColorSequence.new(Color3.fromRGB(255,200,200)) pe.Acceleration = Vector3.new(0,-5,0) pe.Texture = "http://www.roblox.com/asset/?id=1450282643" pe.SpreadAngle = Vector2.new(180,180) pe.Rate = 100
835
							local pe1 = Instance.new("ParticleEmitter",n00b.Head) pe1.Color = ColorSequence.new(Color3.fromRGB(255,200,200)) pe1.Acceleration = Vector3.new(0,-5,0) pe1.Texture = "http://www.roblox.com/asset/?id=1450282643" pe1.SpreadAngle = Vector2.new(180,180) pe1.Rate = 100
836
							local cru = Instance.new("Sound",t) cru.SoundId = "rbxassetid://181027147" cru.Volume = 10 cru:Play()
837
							local chunch = Instance.new("Sound",t) chunch.SoundId = "rbxassetid://618667795" chunch.Volume = 2 chunch:Play()
838
							rut.Anchored = false
839
							prt:Destroy()
840
							n00b:BreakJoints()
841
							for i,v in pairs(n00b:GetChildren()) do
842
								if v:IsA("Part") then
843
									v.BrickColor = BrickColor.new("Wheat")
844
									v.Transparency = .2 v.Material = "Glass"
845
									v.Anchored = false
846
									local dec = v:FindFirstChildOfClass("Decal")
847
									if dec ~= nil then
848
										dec:Destroy()
849
									end
850
									local mec = v:FindFirstChildOfClass("SpecialMesh")
851
									if mec ~= nil then
852
										mec:Destroy()
853
									end
854
								end
855
							end 
856
							for i,v in pairs(n00b:GetChildren()) do
857
								if v:IsA("Accessory") or ("Hat") then
858
									local pt = v:FindFirstChildOfClass("Part")
859
									if pt ~= nil then
860
										pt.Anchored = false
861
										pt.Transparency = .3 pt.BrickColor = BrickColor.new("Wheat")
862
										pt.Material = "Glass" pt.CanCollide = true
863
										local smh = pt:FindFirstChildOfClass("SpecialMesh")
864
										if smh ~= nil then
865
											smh.TextureId = ""
866
										end
867
									end
868
								end
869
							end
870
							for i,v in pairs(n00b:GetChildren()) do
871
                                if v:IsA("MeshPart") then
872
								v.Anchored = false
873
                                    v.BrickColor = BrickColor.new("Wheat")
874
                                    v.Transparency = .2 v.Material = "Glass"
875
									local dec = v:FindFirstChildOfClass("Decal")
876
									if dec ~= nil then
877
										dec:Destroy()
878
									end
879
                                    end
880
                                end
881
							for i,v in pairs(n00b:GetChildren()) do
882
								if v:IsA("Script") then
883
									v:Destroy()
884
								end
885
							end
886
							for i,v in pairs(n00b:GetChildren()) do
887
								if v:IsA("Humanoid") then
888
									v:Destroy()
889
								end
890
							end
891
							for i,v in pairs(n00b:GetChildren()) do
892
								if v:IsA("CharacterMesh") then
893
									v:Destroy()
894
								end
895
							end
896
							for i,v in pairs(n00b:GetChildren()) do
897
								if v:IsA("Shirt") then
898
									v:Destroy()
899
								end
900
							end
901
							for i,v in pairs(n00b:GetChildren()) do
902
								if v:IsA("Pants") then
903
									v:Destroy()
904
								end
905
							end
906
							for i,v in pairs(n00b:GetChildren()) do
907
								if v:IsA("Part") and v:IsA("SpecialMesh") then
908
									v.Transparency = .5 v.CanCollide = true
909
									v.Name = "nub" v.BrickColor = BrickColor.new("Wheat")
910
									v.Mesh.TextureId = ""
911
								end
912
							end
913
							wait(.3)
914
							pe.Enabled = false
915
							pe1.Enabled = false
916
							rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
917
							ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
918
							rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
919
							lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
920
							nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
921
							rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
922
						wait(2)
923
						chunch:Destroy() cru:Destroy()
924
							n00b:Destroy()
925
					end
926
				end
927
				end
928
				end
929
		bric.Touched:connect(smash)
930
		wait(3)
931
		bric:Destroy()
932
		using = false
933
		end
934
end)
935
--------Cut the throat---------
936
mouse.KeyDown:connect(function(key)
937
	if key == "h" and not using then
938
			local hum1 = mouse.Target.Parent:findFirstChildOfClass("Humanoid")
939
			if hum1 ~= nil then
940
				char.Animate.Disabled = true
941
				for i,v in pairs(hum1.Parent:GetChildren()) do
942
					if v:IsA("LocalScript") then
943
						v:Destroy()
944
					end
945
				end
946
				for i,v in pairs(hum1.Parent:GetChildren()) do
947
					if v:IsA("Script") then
948
						v:Destroy()
949
					end
950
				end
951
				disshit = hum1.Parent
952
				h1 = hum1.Parent.Head
953
				t1 = hum1.Parent.Torso
954
				ra1 = hum1.Parent["Right Arm"]
955
				la1 = hum1.Parent["Left Arm"]
956
				rl1 = hum1.Parent["Right Leg"]
957
				ll1 = hum1.Parent["Left Leg"]
958
				hum1.WalkSpeed = 0 hum1.JumpPower = 0 hum1.Parent.Head.Anchored = true hum.WalkSpeed = 0 hum.JumpPower = 0
959
				t.CFrame = hum1.Parent.Head.CFrame * CFrame.new(0,-1.5,-2.5) t.CFrame = t.CFrame * CFrame.fromEulerAnglesXYZ(0,3.1,0)
960
				knife = Instance.new("Part",ra) knife.Size = Vector3.new(0.2, 3, 0.7) km = Instance.new("SpecialMesh",knife) km.MeshType = "FileMesh" km.MeshId = "http://www.roblox.com/asset/?id=121944778" km.TextureId = "http://www.roblox.com/asset/?id=161971611" kw = Instance.new("Weld",knife) kw.Part0 = knife kw.Part1 = ra kw.C0 = kw.C0 * CFrame.new(0,-.6,1) kw.C0 = kw.C0 * CFrame.fromEulerAnglesXYZ(1.5,3,0)
961
			rut.Anchored = true
962
			for i = 1,5 do
963
				rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.3,0,0)
964
				wait()
965
			end
966
			bb = Instance.new("BillboardGui",char)
967
			bb.AlwaysOnTop = false
968
			bb.Size = UDim2.new(5,35,2,15)
969
			bb.StudsOffset = Vector3.new(4,0,0)
970
			bb.MaxDistance = 75
971
			bb.Adornee = h
972
			bb.Name = "Name"
973
			label = Instance.new("TextLabel",bb)
974
			label.BackgroundTransparency = 1
975
			label.TextScaled = true
976
			label.BorderSizePixel = 0
977
			label.Text = "Be Gone... " ..disshit.Name
978
			label.Font = "Cartoon"
979
			label.TextSize = 20
980
			label.TextStrokeTransparency = 0
981
			label.TextColor3 = Color3.new(1,1,1)
982
			label.TextStrokeColor3 = Color3.fromRGB(255,150,0)
983
			label.Size = UDim2.new(1,0,0.5,0)
984
			label.Parent = bb
985
			for i = 1,10 do
986
				bb.StudsOffset = bb.StudsOffset +Vector3.new(0,.2,0)
987
				label.TextTransparency = label.TextTransparency +.1
988
				label.TextStrokeTransparency = label.TextStrokeTransparency +.1
989
				wait(.07)
990
			end
991
			for i,v in pairs(char:GetChildren()) do
992
				if v:IsA("BillboardGui") then
993
					v:Destroy()
994
				end
995
			end
996
			for i = 1,3 do
997
				rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.6)
998
				wait()
999
			end
1000
			hum1.Health = 0.1 hum1.MaxHealth = 100
1001
			stab = Instance.new("Sound",h1) stab.TimePosition = .3 stab.SoundId = "rbxassetid://1386772138" stab.Volume = 3 stab:Play()
1002
			hum1.PlatformStand = true
1003
			hum1.Parent.Head.Anchored = false
1004
			for i,v in pairs(t1:GetChildren()) do
1005
				if v:IsA("Motor6D") then
1006
					v:Destroy()
1007
				end
1008
			end
1009
			for i,v in pairs(h1:GetChildren()) do
1010
				if v:IsA("Decal") then
1011
					v:Destroy()
1012
				end
1013
			end
1014
			aaaaa = Instance.new("Sound",h1) aaaaa.SoundId = "rbxassetid://393884633" aaaaa.Volume = 3 aaaaa:Play()
1015
			disshit:BreakJoints()
1016
			ooww = Instance.new("Decal",h1) ooww.Texture = "http://www.roblox.com/asset/?id=1253783230"
1017
			at2 = Instance.new("Attachment",t1) at2.Position = Vector3.new(1,.8,0) at2.Position = Vector3.new(1,.8,0)
1018
			at = Instance.new("Attachment",ra1) at.Name = "oof" at.Position = Vector3.new(-.5,.8,0)
1019
			balls = Instance.new("BallSocketConstraint",ra1) balls.Attachment0 = at2 balls.Attachment1 = at
1020
			at21 = Instance.new("Attachment",t1) at21.Position = Vector3.new(-1,.8,0) at21.Position = Vector3.new(-1,.8,0) at21.Orientation = Vector3.new(0,180,0)
1021
			at1 = Instance.new("Attachment",la1) at.Name = "oof" at1.Position = Vector3.new(.5,.8,0)
1022
			balls1 = Instance.new("BallSocketConstraint",la1) balls1.Attachment0 = at21 balls1.Attachment1 = at1
1023
			nek = Instance.new("Attachment",h1) nek2 = Instance.new("Attachment",t1) nek2.Position = Vector3.new(0,1,0) nek.Position = Vector3.new(0,-.5,0) nball = Instance.new("BallSocketConstraint",h1) nball.Attachment0 = nek nball.Attachment1 = nek2
1024
			owihatedis = Instance.new("Attachment",t1) owihatedis.Position = Vector3.new(.6,-1,0) oihd = Instance.new("Attachment",rl1) oihd.Position = Vector3.new(.1,1,0) oww = Instance.new("BallSocketConstraint",rl1) oww.Attachment0 = owihatedis oww.Attachment1 = oihd
1025
			owihatedis2 = Instance.new("Attachment",t1) owihatedis2.Position = Vector3.new(-.6,-1,0) oihd2 = Instance.new("Attachment",ll1) oihd2.Position = Vector3.new(-.1,1,0) oww2 = Instance.new("BallSocketConstraint",ll1) oww2.Attachment0 = owihatedis2 oww2.Attachment1 = oihd2
1026
			box = Instance.new("Part",ra1) box.Size = Vector3.new(1,1,1) box.Transparency = 1
1027
		box1 = Instance.new("Part",la1) box1.Size = Vector3.new(1,1,1) box1.Transparency = 1
1028
		box2 = Instance.new("Part",rl1) box2.Size = Vector3.new(1,1,1) box2.Transparency = 1
1029
		box3 = Instance.new("Part",ll1) box3.Size = Vector3.new(1,1,1) box3.Transparency = 1
1030
		box4 = Instance.new("Part",t1) box4.Size = t.Size - Vector3.new(0,.2,0) box4.Transparency = 1
1031
		bw = Instance.new("Weld",box) bw.Part0 = box bw.Part1 = ra1 bw.C0 = bw.C0 * CFrame.new(0,.5,0)
1032
		bw1 = Instance.new("Weld",box1) bw1.Part0 = box1 bw1.Part1 = la1 bw1.C0 = bw1.C0 * CFrame.new(0,.5,0)
1033
		bw2 = Instance.new("Weld",box2) bw2.Part0 = box2 bw2.Part1 = rl1 bw2.C0 = bw2.C0 * CFrame.new(0,.5,0)
1034
		bw3 = Instance.new("Weld",box3) bw3.Part0 = box3 bw3.Part1 = ll1 bw3.C0 = bw3.C0 * CFrame.new(0,.5,0)
1035
		bw4 = Instance.new("Weld",box4) bw4.Part0 = box4 bw4.Part1 = t1  bw4.C0 = bw4.C0 * CFrame.new(0,.2,0)
1036
			for i = 1,2 do
1037
				rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.4)
1038
				wait()
1039
			end
1040
			end
1041
			char.Animate.Disabled = false
1042
			rut.Anchored = false
1043
		hum.WalkSpeed = 16 hum.JumpPower = 50
1044
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,3.145,0) knife:Destroy()
1045
		for i = 1,10 do
1046
			blood = Instance.new("Part",h1) blood.Size = Vector3.new(3,3,.01) blood.BrickColor = BrickColor.new("Crimson") blood.TopSurface = "Smooth" blood.BottomSurface = "Smooth" blood.Material = "Glass" blood.CFrame = h1.CFrame * CFrame.new(0,-.5,-.6) bloodm = Instance.new("SpecialMesh",blood) bloodm.MeshType = "Sphere"
1047
			wait(.2)
1048
		end
1049
		wait(1)
1050
			for i = 1,10 do
1051
				h1.Transparency = h1.Transparency +.1
1052
				t1.Transparency =t1.Transparency +.1
1053
				ra1.Transparency = ra1.Transparency +.1
1054
				la1.Transparency =la1.Transparency +.1
1055
				rl1.Transparency = rl1.Transparency +.1
1056
				ll1.Transparency = ll1.Transparency +.1
1057
				wait(.05)
1058
			end
1059
			disshit:Destroy()
1060
			bb = Instance.new("BillboardGui",char)
1061
			bb.AlwaysOnTop = false
1062
			bb.Size = UDim2.new(5,35,2,15)
1063
			bb.StudsOffset = Vector3.new(4,0,0)
1064
			bb.MaxDistance = 75
1065
			bb.Adornee = h
1066
			bb.Name = "Name"
1067
			label = Instance.new("TextLabel",bb)
1068
			label.BackgroundTransparency = 1
1069
			label.TextScaled = true
1070
			label.BorderSizePixel = 0
1071
			label.Text = disshit.Name.. " Is Gone..."
1072
			label.Font = "Cartoon"
1073
			label.TextSize = 20
1074
			label.TextStrokeTransparency = 0
1075
			label.TextColor3 = Color3.new(1,1,1)
1076
			label.TextStrokeColor3 = Color3.fromRGB(255,150,0)
1077
			label.Size = UDim2.new(1,0,0.5,0)
1078
			label.Parent = bb
1079
			for i = 1,10 do
1080
				bb.StudsOffset = bb.StudsOffset +Vector3.new(0,.2,0)
1081
				label.TextTransparency = label.TextTransparency +.1
1082
				label.TextStrokeTransparency = label.TextStrokeTransparency +.1
1083
				wait(.07)
1084
			end
1085
			for i,v in pairs(char:GetChildren()) do
1086
				if v:IsA("BillboardGui") then
1087
					v:Destroy()
1088
				end
1089
			end
1090
		end
1091
end)
1092
-------Throw Toast(Can eat)-------- 
1093
mouse.KeyDown:connect(function(key)
1094
	if key == "y" and not using then
1095
		function eat(toch)
1096
        if toch.Parent ~= nil then
1097
        local humt = toch.Parent:findFirstChildOfClass("Humanoid")
1098
        if humt ~= nil then
1099
        local hed = humt.Parent.Head
1100
        toast:Destroy()
1101
        humt.Health = humt.Health +20 humt.WalkSpeed = humt.WalkSpeed +5 humt.JumpPower = humt.JumpPower +5
1102
        yum = Instance.new("Sound",hed) yum.Volume = 8 yum.SoundId = "rbxassetid://181027147" yum:Play()
1103
        wait(1)
1104
        yum:Destroy()
1105
        wait(10)
1106
        humt.WalkSpeed = humt.WalkSpeed -5 humt.JumpPower = humt.JumpPower -5
1107
        end
1108
        end
1109
        end
1110
        toast = Instance.new("Part",workspace) toast.Name = "EATMEBITC" toast.Size = Vector3.new(1.248, 1.264, 0.16) tm = Instance.new("SpecialMesh",toast) tm.Scale = Vector3.new(0.003, 0.003, 0.003) tm.MeshType = "FileMesh" tm.MeshId = "rbxassetid://1614924885" tm.TextureId = "rbxassetid://1614940093" tw = Instance.new("Weld",brda) tw.Name = "wuild" tw.Part0 = toast tw.Part1 = brda
1111
        for i = 1,5 do
1112
            rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.2,-.2,.2)
1113
            wait()
1114
        end
1115
        wait(.3)
1116
        for i = 1,2 do
1117
            rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.2,0,.1)
1118
            wait()
1119
        end
1120
        for i,v in pairs(brda:GetChildren()) do
1121
            if v:IsA("Weld") then
1122
            v:Destroy()
1123
        end
1124
        end
1125
        toast.Touched:connect(eat)
1126
        for i = 1,5 do
1127
            toast.CFrame = toast.CFrame * CFrame.new(0,1,1)
1128
            wait()
1129
        end
1130
        for i = 1,3 do
1131
            rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.2,0,.1)
1132
            wait()
1133
        end
1134
        rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
1135
	end
1136
end)
1137
------Summon Explosion------
1138
ALLAHU_AKBAR = false
1139
mouse.KeyDown:connect(function(key)
1140
	if key == "b" and not using and not ALLAHU_AKBAR then
1141
		using = true
1142
		ALLAHU_AKBAR = true
1143
		local bum = Instance.new("Part",workspace) bum.CFrame = mouse.Hit bum.TopSurface = "Smooth" bum.BottomSurface = "Smooth" bum.Material = "Neon" bum.BrickColor = BrickColor.new("Deep orange") bum.Transparency = 1  bum.Shape = "Ball" bum.Size = Vector3.new(50,50,50) bum.CanCollide = false bum.Anchored = true
1144
					function aa(hit)
1145
						if hit.Parent ~= nil then
1146
							local humta = hit.Parent:findFirstChildOfClass("Humanoid")
1147
							if humta ~= nil then
1148
								if hit.Parent == char then
1149
									
1150
								else
1151
									local datbitc = hit.Parent humta.DisplayDistanceType = "None"
1152
									hit.Transparency = 1 hit.Anchored = true
1153
									for i,v in pairs(datbitc:GetChildren()) do
1154
										if v:IsA("Accessory") then
1155
											v:Destroy()
1156
										end
1157
									end
1158
									datbitc.Head.CFrame = bum.CFrame
1159
									humta.Parent.Head.Anchored = true
1160
									wait(1.4)
1161
									datbitc:Destroy()
1162
								end
1163
							end
1164
						end
1165
					end
1166
					bum.Touched:connect(aa)
1167
					local tweens = game:GetService("TweenService")	
1168
					local tweeni = TweenInfo.new(
1169
						1,
1170
						Enum.EasingStyle.Bounce,
1171
						Enum.EasingDirection.Out,
1172
						0,						
1173
						true,
1174
						0
1175
					)					
1176
					local size = {Size = Vector3.new(5,5,5), Transparency = 0,Color = Color3.fromRGB(255,0,0)}		
1177
					local tsize = tweens:Create(bum,tweeni,size)								
1178
					tsize:Play()	
1179
					wait(1.4)
1180
					local bs = Instance.new("Sound",bum) bs.SoundId = "rbxassetid://144699494" bs.Volume = 10 bs:Play()
1181
					wait(1.7)
1182
					bum:Destroy()
1183
					using = false
1184
					wait(5)
1185
					local uf = Instance.new("Sound",t) uf.SoundId = "rbxassetid://1474367957" uf.Volume = 2 uf:Play()
1186
					ALLAHU_AKBAR = false
1187
					wait(1)
1188
					uf:Destroy()
1189
	end
1190
end)
1191
------Kaboom------
1192
kaboom1 = false
1193
mouse.KeyDown:connect(function(key)
1194
	if key == "j" and not using and not kaboom1 then
1195
		function ah(hit)
1196
			if hit.Parent ~= nil then
1197
				local humana = hit.Parent:findFirstChildOfClass("Humanoid")
1198
				if humana ~= nil then
1199
					if hit.Parent == char then
1200
						
1201
					else
1202
						local bitc = hit.Parent
1203
						bitc:Destroy()
1204
					end
1205
				end
1206
			end
1207
		end
1208
		using = true
1209
		rut.Anchored = true kaboom1 = true
1210
		for i = 1,10 do
1211
			rut.CFrame = rut.CFrame * CFrame.new(0,3,0)
1212
			mus.Volume = mus.Volume -.3
1213
			cm.Volume = cm.Volume +.1
1214
			wait()
1215
		end
1216
		local poom = Instance.new("Sound",t) poom.EmitterSize = 1000 poom.Volume = 10 poom.Pitch = .6 poom.SoundId = "rbxassetid://704085554"
1217
		local bum = Instance.new("Part",t) bum.Transparency = 1 bum.CanCollide = false bum.Anchored = true bum.CFrame = t.CFrame bum.Size = Vector3.new(200,200,200) bum.BrickColor = BrickColor.new("Toothpaste") bum.Shape = "Ball" bum.Material = "Neon"
1218
		local bum1 = Instance.new("Part",t) bum1.Transparency = 1 bum1.CanCollide = false bum1.Anchored = true bum1.CFrame = t.CFrame bum1.Size = Vector3.new(200,200,200) bum1.BrickColor = BrickColor.new("Toothpaste") bum1.Shape = "Ball" bum1.Material = "Neon"
1219
		local bum2 = Instance.new("Part",t) bum2.Transparency = 1 bum2.CanCollide = false bum2.Anchored = true bum2.CFrame = t.CFrame bum2.Size = Vector3.new(200,200,200) bum2.BrickColor = BrickColor.new("Toothpaste") bum2.Shape = "Ball" bum2.Material = "Neon"
1220
		local bum3= Instance.new("Part",t) bum3.Transparency = 1 bum3.CanCollide = false bum3.Anchored = true bum3.CFrame = t.CFrame bum3.Size = Vector3.new(200,200,200) bum3.BrickColor = BrickColor.new("Toothpaste") bum3.Shape = "Ball" bum3.Material = "Neon"
1221
		local tweeni = TweenInfo.new(
1222
			.6,
1223
			Enum.EasingStyle.Quint,
1224
			Enum.EasingDirection.In,
1225
			0,
1226
			false,
1227
			0
1228
		)
1229
		local size = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = .75}
1230
		local tsize = tweens:Create(bum,tweeni,size)
1231
		local size1 = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = .5}
1232
		local tsize1 = tweens:Create(bum1,tweeni,size1)
1233
		local size2 = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = .25}
1234
		local tsize2 = tweens:Create(bum2,tweeni,size2)
1235
		local size3 = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = 0}
1236
		local tsize3 = tweens:Create(bum3,tweeni,size2)
1237
		tsize:Play()
1238
		poom:Play()
1239
		wait(.6)
1240
		tsize1:Play()
1241
		poom:Play()
1242
		wait(.6)
1243
		tsize2:Play()
1244
		poom:Play()
1245
		wait(.6)
1246
		tsize3:Play()
1247
		poom:Play()
1248
		local kaboom = Instance.new("Sound",t) kaboom.Volume = 3 kaboom.SoundId = "rbxassetid://138084923" kaboom:Play()
1249
		wait(1)
1250
		bum.Transparency = 1 bum1.Transparency = 1 bum2.Transparency = 1
1251
		local alahuakbar = {Size = Vector3.new(500,500,500), Transparency = 1, Color = Color3.fromRGB(255,50,0)}
1252
		local tak = tweens:Create(bum3,tweeni,alahuakbar)
1253
		tak:Play()
1254
		bum3.Touched:connect(ah)
1255
		local exp = Instance.new("Sound",t) exp.EmitterSize = 100 exp.Volume = 10 exp.SoundId = "rbxassetid://1577567682" exp:Play()
1256
		wait(1)
1257
		using = false rut.Anchored = false poom:Destroy()
1258
		bum:Destroy() bum1:Destroy() bum2:Destroy() bum3:Destroy()
1259
		wait(1)
1260
		kaboom:Destroy() 
1261
		wait(.4)
1262
		exp:Destroy()
1263
		wait(10)
1264
		for i = 1,10 do
1265
			mus.Volume = mus.Volume +.3
1266
			cm.Volume = cm.Volume -.1
1267
			wait(.1)
1268
		end
1269
		kaboom1 = false
1270
	end
1271
end)
1272
------Bread Grenade------
1273
brid = false
1274
mouse.KeyDown:connect(function(key)
1275
	if key == "u" and not using and not brid then
1276
		using = true
1277
		brid = true
1278
		function gren_exp(hit)
1279
			if hit.Parent ~= nil then
1280
							local humt = hit.Parent:FindFirstChild("Humanoid")
1281
							if humt ~= nil then
1282
					if hit.Parent == char then
1283
						
1284
					else
1285
						hit.Transparency = .4 hit.Color = Color3.fromRGB(255,150,0) hit.Material = "Neon"
1286
								local meaaa = Instance.new("SpecialMesh",hit) meaaa.MeshType = "Brick"
1287
								wait(.7)
1288
								 hit.Anchored = true
1289
								for i = 1,30 do
1290
									hit.CFrame = hit.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
1291
									wait()
1292
								end
1293
								for i = 1,6 do
1294
									hit.Transparency = hit.Transparency +.1
1295
									hit.CFrame = hit.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
1296
									wait()
1297
								end
1298
								humt.Parent:Destroy()
1299
							end
1300
						end
1301
			end
1302
		end
1303
		local tmod = Instance.new("Model",workspace) tmod.Name = "tust"
1304
		local tost = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1305
		local tmesh createMesh("SpecialMesh",tost,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1306
		local tweld = CreateWeld("Weld",tost,ra,tost,CFrame.new(0,-1.5,0),CFrame.fromEulerAnglesXYZ(0,0,3.1))
1307
		local tost1 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1308
		local tmesh1 createMesh("SpecialMesh",tost1,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1309
		local tweld1 = CreateWeld("Weld",tost1,tost1,tost,CFrame.new(0,0,.16),CFrame.new(0,0,0))
1310
		local tost2 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1311
		local tmesh2 createMesh("SpecialMesh",tost2,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1312
		local tweld2 = CreateWeld("Weld",tost2,tost2,tost,CFrame.new(0,0,.32),CFrame.new(0,0,0))
1313
		local tost3 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1314
		local tmesh3 createMesh("SpecialMesh",tost3,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1315
		local tweld3 = CreateWeld("Weld",tost3,tost3,tost,CFrame.new(0,0,.48),CFrame.new(0,0,0))
1316
		local tost4 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1317
		local tmesh4 createMesh("SpecialMesh",tost4,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1318
		local tweld4 = CreateWeld("Weld",tost4,tost4,tost,CFrame.new(0,0,-.16),CFrame.new(0,0,0))
1319
		local tost5 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1320
		local tmesh5 createMesh("SpecialMesh",tost5,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1321
		local tweld5 = CreateWeld("Weld",tost5,tost5,tost,CFrame.new(0,0,-.32),CFrame.new(0,0,0))
1322
		local tost6 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1323
		local tmesh6 createMesh("SpecialMesh",tost6,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1324
		local tweld6 = CreateWeld("Weld",tost6,tost6,tost,CFrame.new(0,0,-.48),CFrame.new(0,0,0))
1325
		local tost7 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1326
		local tmesh7 createMesh("SpecialMesh",tost7,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1327
		local tweld7 = CreateWeld("Weld",tost7,tost7,tost,CFrame.new(0,0,-.64),CFrame.new(0,0,0))
1328
		local tost8= CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
1329
		local tmesh8 createMesh("SpecialMesh",tost8,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
1330
		local tweld8 = CreateWeld("Weld",tost8,tost8,tost,CFrame.new(0,0,.64),CFrame.new(0,0,0))
1331
		function oobread(hit)
1332
			if hit.Parent ~= nil then
1333
				local huma = hit.Parent:FindFirstChildOfClass("Humanoid")
1334
				if huma ~= nil then
1335
					if hit.Parent == char then
1336
						
1337
					else
1338
						for i = 1,100 do
1339
							huma.WalkToPoint = tost.Position
1340
							wait(.05)
1341
						end
1342
					end
1343
				end
1344
			end
1345
		end
1346
		for i = 1,5 do
1347
			rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.15,0,.66)
1348
			wait()
1349
		end
1350
		wait(.6)
1351
		local vel = Instance.new("BodyVelocity",tost) vel.MaxForce = Vector3.new(99999,99999,99999)
1352
		vel.Velocity = ra.CFrame.lookVector * -30
1353
		tweld:Destroy()
1354
		for i = 1,5 do
1355
			rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.1) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.15,0,-.66)
1356
			wait()
1357
		end
1358
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,3.145,0)
1359
		vel:Destroy()
1360
		wait(.2)
1361
		tost.CanCollide = true tost1.CanCollide = true tost2.CanCollide = true tost3.CanCollide = true tost4.CanCollide = true tost5.CanCollide = true tost6.CanCollide = true tost7.CanCollide = true tost8.CanCollide = true
1362
		local obread = CreatePart(tmod,"Ice",0,1,"White","obread",Vector3.new(40,40,40),true,false) obread.CFrame = tost.CFrame obread.Touched:connect(oobread)
1363
		wait(3)
1364
		obread:Destroy()
1365
		wait(1)
1366
		using = false
1367
		tost.Touched:connect(oobread) tost1.Touched:connect(oobread) tost2.Touched:connect(oobread) tost3.Touched:connect(oobread) tost4.Touched:connect(oobread) tost5.Touched:connect(oobread) tost6.Touched:connect(oobread) tost7.Touched:connect(oobread) tost8.Touched:connect(oobread)
1368
		local boom = Instance.new("Explosion",tost) boom.Visible = false boom.Position = tost.Position boom.BlastPressure = 100000 boom.BlastRadius = 10
1369
		local bah = CreatePart(tmod,"Neon",0,0,"Deep Orange","bah",Vector3.new(2,2,2),true,false) bah.Position = tost.Position bah.Shape = "Ball"
1370
		bah.Color = Color3.fromRGB(255,160,0) bah.Touched:connect(gren_exp)
1371
		local tweeni = TweenInfo.new(
1372
			.3,
1373
			Enum.EasingStyle.Quint,
1374
			Enum.EasingDirection.In,
1375
			0,
1376
			false,
1377
			0)
1378
		local size = {Size = Vector3.new(20,20,20), Color = Color3.fromRGB(255,0,0), Transparency = 1}
1379
		local tsize = tweens:Create(bah,tweeni,size)
1380
		tsize:Play()
1381
		brid = false
1382
		wait(.3)
1383
		bah:Destroy()
1384
		wait(5)
1385
		tmod:Destroy()
1386
	end
1387
end)
1388
------Chat Func.------
1389
bbg = Instance.new("BillboardGui",h)
1390
bbg.Size = UDim2.new(0,200,0,50)
1391
bbg.StudsOffset = Vector3.new(0,2,0)
1392
bbgTl = Instance.new("TextLabel",bbg)
1393
bbgTl.BackgroundTransparency = 1
1394
bbgTl.Size = UDim2.new(10,0,1,0)
1395
bbgTl.Position = UDim2.new(-4.5,0,0,0)
1396
bbgTl.Font = "Cartoon"
1397
bbgTl.Text = " "
1398
bbgTl.TextSize = 30
1399
bbgTl.TextStrokeColor3 = Color3.fromRGB(255,160)
1400
bbgTl.TextColor3 = Color3.fromRGB(255,255,255)
1401
bbgTl.TextStrokeTransparency = 0
1402
bbgTl.TextWrapped = true
1403
plr.Chatted:connect(function(msg)
1404
    bbgTl.Text = msg
1405
    wait(5)
1406
    if bbgTl.Text == msg then
1407
        bbgTl.Text = " "
1408
    end
1409
end)
1410
------...------
1411
mouse.KeyDown:connect(function(key)
1412
	if key == "=" and not using then
1413
		using = true
1414
		for i = 1,5 do
1415
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.15,0,.3)
1416
			ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.15,0,-.3)
1417
			wait()
1418
		end
1419
		local hugbox = CreatePart(char,"Plastic",0,1,"White","Hugs",Vector3.new(3,5,3),false,false)
1420
		local huw = CreateWeld("Weld",hugbox,t,hugbox,CFrame.new(0,0,-2),CFrame.new(0,0,0))
1421
		function hugs(hug)
1422
			if hug.Parent ~= nil then
1423
				local wanthugs = hug.Parent:FindFirstChild("Humanoid")
1424
				if wanthugs ~= nil then
1425
					if hug.Parent == char then
1426
						
1427
					else
1428
						hugbox:Destroy() wanthugs.Health = wanthugs.Health +35 wanthugs.PlatformStand = false wanthugs.Sit = false
1429
						for _,q in pairs(wanthugs.Parent.Head:GetChildren()) do
1430
							if q:IsA("Decal") then
1431
								q.Transparency = 1
1432
							end
1433
						end 
1434
						local o = Instance.new("Decal",wanthugs.Parent.Head) o.Texture = "http://www.roblox.com/asset/?id=388881187"
1435
						h.face.Transparency = 1
1436
						local cface = Instance.new("Decal",h) cface.Texture = "http://www.roblox.com/asset/?id=158131972"
1437
						local hugw = CreateWeld("Weld",char,wanthugs.Parent.Head,t,CFrame.new(0,-1.5,-1.2),CFrame.fromEulerAnglesXYZ(0,3.1,0))
1438
						wait(.2)
1439
						for i = 1,10 do
1440
							rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.1,0,.03) rs.C0 = rs.C0 * CFrame.new(0,-.06,0)
1441
							ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.1,0,-.03) ls.C0 = ls.C0 * CFrame.new(0,-.06,0)
1442
							nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.05,.04,.04)
1443
							wait()
1444
						end
1445
						wait(2.2)
1446
						o:Destroy()
1447
						for _,q in pairs(wanthugs.Parent.Head:GetChildren()) do
1448
							if q:IsA("Decal") then
1449
								q.Transparency = 0
1450
							end
1451
						end
1452
						cface:Destroy()
1453
						h.face.Transparency = 0
1454
						hugw:Destroy()
1455
						char.Animate.Disabled = false
1456
					end
1457
				end
1458
			end
1459
		end
1460
		hugbox.Touched:connect(hugs)
1461
		wait(3)
1462
		for i = 1,5 do
1463
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.15,0,-.3)
1464
			ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.15,0,.3)
1465
			wait()
1466
		end
1467
		hugbox:Destroy()
1468
		using = false
1469
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
1470
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
1471
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
1472
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
1473
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
1474
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
1475
	end
1476
end)
1477
------Decapitate------
1478
dec = false
1479
mouse.KeyDown:connect(function(key)
1480
	if key == "n" and not using and not dec then
1481
		local hum1 = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
1482
		if hum1 ~= nil then
1483
			local tp = Instance.new("Part",t) tp.Anchored = true tp.Size = t.Size tp.Transparency = 1 tp.CFrame = t.CFrame tp.CanCollide = false
1484
			using = true dec = true char.Animate.Disabled = true
1485
			t.Anchored = true hum.WalkSpeed = 0 hum.JumpPower = 0
1486
			disshit = hum1.Parent
1487
			h1 = hum1.Parent.Head
1488
			t1 = hum1.Parent.Torso
1489
			ra1 = hum1.Parent["Right Arm"]
1490
			la1 = hum1.Parent["Left Arm"]
1491
			rl1 = hum1.Parent["Right Leg"]
1492
			ll1 = hum1.Parent["Left Leg"]
1493
			hum1.WalkSpeed = 0 hum1.JumpPower = 0 t1.Anchored = true
1494
			t.CFrame = t1.CFrame * CFrame.new(0,0,-2) * CFrame.fromEulerAnglesXYZ(0,3.1,0)
1495
			for i = 1,5 do
1496
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,.1,.4) * CFrame.new(0,-.15,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,-.1,-.4) * CFrame.new(0,-.15,0)
1497
				wait()
1498
			end
1499
			wait(.1)
1500
			local chunc = Instance.new("Sound",h1) chunc.SoundId = "rbxassetid://314390675" chunc.Volume = 2 chunc.Pitch = .7 chunc:Play()
1501
			for i = 1,10 do
1502
				chunc:Play()
1503
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.06) * CFrame.new(.05,-.03,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.06) * CFrame.new(-.05,-.03,0)
1504
				wait(.05)
1505
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.06) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,.06)
1506
				wait(.1)
1507
			end
1508
			for i,v in pairs(disshit:GetChildren()) do
1509
				if v.Name == "HumanoidRootPart" then
1510
					v:Destroy()
1511
				end
1512
			end
1513
			t1.Anchored = false h1.Anchored = false ra1.Anchored = false la1.Anchored = false rl1.Anchored = false ll1.Anchored = false
1514
			hum1.PlatformStand = true
1515
			hum1.Parent.Head.Anchored = false
1516
			disshit:BreakJoints()
1517
			for i,v in pairs(h1:GetChildren()) do
1518
				if v:IsA("Decal") then
1519
					v:Destroy()
1520
				end
1521
			end
1522
			ooww = Instance.new("Decal",h1) ooww.Texture = "http://www.roblox.com/asset/?id=1253783230"
1523
			at2 = Instance.new("Attachment",t1) at2.Position = Vector3.new(1,.8,0) at2.Position = Vector3.new(1,.8,0)
1524
			at = Instance.new("Attachment",ra1) at.Name = "oof" at.Position = Vector3.new(-.5,.8,0)
1525
			balls = Instance.new("BallSocketConstraint",ra1) balls.Attachment0 = at2 balls.Attachment1 = at
1526
			at21 = Instance.new("Attachment",t1) at21.Position = Vector3.new(-1,.8,0) at21.Position = Vector3.new(-1,.8,0) at21.Orientation = Vector3.new(0,180,0)
1527
			at1 = Instance.new("Attachment",la1) at.Name = "oof" at1.Position = Vector3.new(.5,.8,0)
1528
			balls1 = Instance.new("BallSocketConstraint",la1) balls1.Attachment0 = at21 balls1.Attachment1 = at1
1529
			owihatedis = Instance.new("Attachment",t1) owihatedis.Position = Vector3.new(.6,-1,0) oihd = Instance.new("Attachment",rl1) oihd.Position = Vector3.new(.1,1,0) oww = Instance.new("BallSocketConstraint",rl1) oww.Attachment0 = owihatedis oww.Attachment1 = oihd
1530
			nek = Instance.new("Attachment",h1) nek2 = Instance.new("Attachment",t1) nek2.Position = Vector3.new(0,1,0) nek.Position = Vector3.new(0,-.5,0) nball = Instance.new("RopeConstraint",h1) nball.Length = 5000 nball.Visible = false nball.Attachment0 = nek nball.Attachment1 = nek2
1531
			owihatedis2 = Instance.new("Attachment",t1) owihatedis2.Position = Vector3.new(-.6,-1,0) oihd2 = Instance.new("Attachment",ll1) oihd2.Position = Vector3.new(-.1,1,0) oww2 = Instance.new("BallSocketConstraint",ll1) oww2.Attachment0 = owihatedis2 oww2.Attachment1 = oihd2
1532
			box = Instance.new("Part",ra1) box.Size = Vector3.new(1,1,1) box.Transparency = 1
1533
		box1 = Instance.new("Part",la1) box1.Size = Vector3.new(1,1,1) box1.Transparency = 1
1534
		box2 = Instance.new("Part",rl1) box2.Size = Vector3.new(1,1,1) box2.Transparency = 1
1535
		box3 = Instance.new("Part",ll1) box3.Size = Vector3.new(1,1,1) box3.Transparency = 1
1536
		box4 = Instance.new("Part",t1) box4.Size = t.Size - Vector3.new(0,.2,0) box4.Transparency = 1
1537
		bw = Instance.new("Weld",box) bw.Part0 = box bw.Part1 = ra1 bw.C0 = bw.C0 * CFrame.new(0,.5,0)
1538
		bw1 = Instance.new("Weld",box1) bw1.Part0 = box1 bw1.Part1 = la1 bw1.C0 = bw1.C0 * CFrame.new(0,.5,0)
1539
		bw2 = Instance.new("Weld",box2) bw2.Part0 = box2 bw2.Part1 = rl1 bw2.C0 = bw2.C0 * CFrame.new(0,.5,0)
1540
		bw3 = Instance.new("Weld",box3) bw3.Part0 = box3 bw3.Part1 = ll1 bw3.C0 = bw3.C0 * CFrame.new(0,.5,0)
1541
		bw4 = Instance.new("Weld",box4) bw4.Part0 = box4 bw4.Part1 = t1  bw4.C0 = bw4.C0 * CFrame.new(0,.2,0)
1542
		local blud = Instance.new("Part",h1) blud.Shape = "Cylinder" blud.Size = Vector3.new(0.05, 0.77, 0.83) blud.Material = "Glass" blud.BrickColor = BrickColor.new("Crimson") local bludw = Instance.new("Weld",blud) bludw.Part0 = h1 bludw.Part1 = blud bludw.C0 = bludw.C0 * CFrame.new(0,-.59,0) * CFrame.fromEulerAnglesXYZ(0,0,1.55) 
1543
		local blud1 = Instance.new("Part",t1) blud1.Shape = "Cylinder" blud1.Size = Vector3.new(0.05, 0.77, 0.83) blud1.Material = "Glass" blud1.BrickColor = BrickColor.new("Crimson") local bludw1 = Instance.new("Weld",blud1) bludw1.Part0 = t1 bludw1.Part1 = blud1 bludw1.C0 = bludw1.C0 * CFrame.new(0,1,0) * CFrame.fromEulerAnglesXYZ(0,0,1.55) 
1544
		local hweld = CreateWeld("Weld",t1,h1,ra,CFrame.new(-1,-1,0),CFrame.fromEulerAnglesXYZ(0,0,0)) hweld.C0 = hweld.C0 * CFrame.fromEulerAnglesXYZ(0,0,3.1)
1545
			for i = 1,2 do
1546
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.6) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.6)
1547
				wait()
1548
			end
1549
			wait(.4)
1550
			for i = 1,5 do
1551
				rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.4,0,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,.6)
1552
				wait()
1553
			end
1554
			hweld:Destroy()
1555
			rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
1556
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
1557
		t.Anchored = false hum.WalkSpeed = 16 hum.JumpPower = 50 char.Animate.Disabled = false
1558
		t.CFrame = tp.CFrame
1559
		tp:Destroy()
1560
		using = false
1561
		wait(5)
1562
		for i = 1,10 do
1563
			ra1.Transparency = ra1.Transparency +.1
1564
			la1.Transparency = la1.Transparency +.1
1565
			rl1.Transparency = rl1.Transparency +.1
1566
			ll1.Transparency = ll1.Transparency +.1
1567
			h1.Transparency = h1.Transparency +.1
1568
			t1.Transparency = t1.Transparency +.1
1569
			blud.Transparency = blud.Transparency +.1
1570
			blud1.Transparency = blud1.Transparency +.1
1571
			wait(.1)
1572
		end
1573
		disshit:Destroy()
1574
		dec = false
1575
		end
1576
	end
1577
end)
1578
--------Anti-stun------
1579
mouse.KeyDown:connect(function(key)
1580
	if key == "n" then
1581
		using = false
1582
		h.Anchored = false
1583
		t.Anchored = false
1584
		ra.Anchored = false
1585
		la.Anchored = false
1586
		rl.Anchored = false
1587
		ll.Anchored = false
1588
		for i,v in pairs(char:GetChildren()) do
1589
			if v:IsA("Accessory") then
1590
				v.Handle.Anchored = false
1591
			end
1592
		end
1593
		dec = false
1594
		char.Animate.Disabled = false hum.WalkSpeed = 16 hum.JumpPower = 50
1595
		hum.PlatformStand = false brda.Anchored = false rut.Anchored = false
1596
	end
1597
end)
1598
------Dance------
1599
mouse.KeyDown:connect(function(key)
1600
	if key == "m" and not using then
1601
		using = true
1602
		hum.WalkSpeed = 0 hum.JumpPower = 0 mus.Volume = 0 tripoloski.Volume = 5
1603
		for i = 1,5 do
1604
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.31,0,0) * CFrame.new(0,-.15,-.03)
1605
			ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.31,0,0) * CFrame.new(0,-.15,-.03)
1606
			rh.C0 = rh.C0 * CFrame.new(0,0,.2)
1607
			lh.C0 = lh.C0 * CFrame.new(0,0,.2)
1608
			wait()
1609
		end
1610
		wait(.5)
1611
		for i = 1,6 do
1612
			for i = 1,5 do
1613
			rh.C0 = rh.C0 * CFrame.new(0,.2,0)
1614
			lh.C0 = lh.C0 * CFrame.new(0,.2,0)
1615
			rutj.C0 = rutj.C0 * CFrame.new(0,0,-.2)
1616
			wait()
1617
			end
1618
			wait(.05)
1619
			for i = 1,5 do
1620
			rh.C0 = rh.C0 * CFrame.new(0,-.2,0)
1621
			lh.C0 = lh.C0 * CFrame.new(0,-.2,0)
1622
			rutj.C0 = rutj.C0 * CFrame.new(0,0,.2)
1623
			wait()
1624
			end
1625
		end
1626
		for i = 1,15 do
1627
			for i = 1,2 do
1628
			rh.C0 = rh.C0 * CFrame.new(0,.5,0)
1629
			lh.C0 = lh.C0 * CFrame.new(0,.5,0)
1630
			rutj.C0 = rutj.C0 * CFrame.new(0,0,-.5)
1631
			wait()
1632
			end
1633
			for i = 1,2 do
1634
			rh.C0 = rh.C0 * CFrame.new(0,-.5,0)
1635
			lh.C0 = lh.C0 * CFrame.new(0,-.5,0)
1636
			rutj.C0 = rutj.C0 * CFrame.new(0,0,.5)
1637
			wait()
1638
			end
1639
		end
1640
		for i = 1,25 do
1641
			rh.C0 = rh.C0 * CFrame.new(0,1,0)
1642
			lh.C0 = lh.C0 * CFrame.new(0,1,0)
1643
			rutj.C0 = rutj.C0 * CFrame.new(0,0,-1)
1644
			wait(.03)
1645
			rh.C0 = rh.C0 * CFrame.new(0,-1,0)
1646
			lh.C0 = lh.C0 * CFrame.new(0,-1,0)
1647
			rutj.C0 = rutj.C0 * CFrame.new(0,0,1)
1648
			wait()
1649
		end
1650
		local ow = Instance.new("Decal",h) ow.Texture = "http://www.roblox.com/asset/?id=271100777"
1651
		local chunc = Instance.new("Sound",t) chunc.SoundId = "rbxassetid://314390675" chunc.Volume = 5 chunc:Play()
1652
		h.face.Transparency = 1
1653
		for c = 1,2 do
1654
			rutj.C0 = rutj.C0 * CFrame.new(0,0,-.875)
1655
			rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(-.775,0,0) * CFrame.new(0,.75,0)
1656
			lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(-.775,0,0) * CFrame.new(0,.75,0)
1657
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.7,0,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.7,0,0)
1658
			wait()
1659
		end
1660
		local aaaa = Instance.new("Sound",t) aaaa.SoundId = "rbxassetid://633394595" aaaa.Volume = 5 aaaa:Play()
1661
		wait(1)
1662
		ow:Destroy()
1663
		local wot = Instance.new("Decal",h) wot.Texture = "http://www.roblox.com/asset/?id=1077397727"
1664
		for i = 1,60 do
1665
			rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
1666
			ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
1667
			nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
1668
			rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
1669
			rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
1670
			lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
1671
			wait()
1672
		end
1673
		local boom = Instance.new("Explosion",t) boom.Position = t.Position boom.BlastRadius = 0
1674
		rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
1675
		ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
1676
		rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
1677
		lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
1678
		nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
1679
		rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
1680
		hum.WalkSpeed = 16 hum.JumpPower = 50 h.face.Transparency = 0 wot:Destroy()
1681
		using = false mus.Volume = 2 tripoloski.Volume = 0
1682
		wait(.7)
1683
		boom:Destroy()
1684
	end
1685
end)
1686
------Music Change------
1687
mouse.KeyDown:connect(function(key)
1688
	if key == "1" then
1689
		local mu = math.random(1,5)
1690
		if mu == 1 then
1691
			mus.Volume = 2
1692
			cm.Volume = 0
1693
			tripoloski.Volume = 0
1694
			bochka.Volume = 0
1695
			a13.Volume = 0
1696
		end
1697
		if mu == 2 then
1698
			mus.Volume = 0
1699
			cm.Volume = 2
1700
			tripoloski.Volume = 0
1701
			bochka.Volume = 0
1702
			a13.Volume = 0
1703
		end
1704
		if mu == 3 then
1705
			mus.Volume = 0
1706
			cm.Volume = 0
1707
			tripoloski.Volume = 5
1708
			bochka.Volume = 0
1709
			a13.Volume = 0
1710
		end
1711
		if mu == 4 then
1712
			mus.Volume = 0
1713
			cm.Volume = 0
1714
			tripoloski.Volume = 0
1715
			bochka.Volume = 4
1716
			a13.Volume = 0
1717
		end
1718
		if mu == 5 then
1719
			mus.Volume = 0
1720
			cm.Volume = 0
1721
			tripoloski.Volume = 0
1722
			bochka.Volume = 0
1723
			a13.Volume = 6
1724
		end
1725
	end
1726
end)
1727
-----------------END----------------