View difference between Paste ID: Fs4piNXv and nSejXaiw
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
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
	local h,t
87
	--Give the server mouse data every second frame, but only if the values changed
88
	--If player is not moving their mouse, client won't fire events
89
	local HB = game:GetService("RunService").Heartbeat
90
	while true do
91
		if h~=Mouse.Hit or t~=Mouse.Target then
92
			h,t=Mouse.Hit,Mouse.Target
93
			Event:FireServer({isMouse=true,Target=t,Hit=h})
94
		end
95
		--Wait 2 frames
96
		for i=1,2 do
97
			HB:Wait()
98
		end
99
	end]==],script)
100
101
	----Sandboxed game object that allows the usage of client-side methods and services
102
	--Real game object
103
	local RealGame = game
104
105
	--Metatable for fake service
106
	local FakeService_Metatable = {
107
		__index = function(self,k)
108
			local s = rawget(self,"_RealService")
109
			if s then
110
				return typeof(s[k])=="function"
111
				and function(_,...)return s[k](s,...)end or s[k]
112
			end
113
		end,
114
		__newindex = function(self,k,v)
115
			local s = rawget(self,"_RealService")
116
			if s then s[k]=v end
117
		end
118
	}
119
	local function FakeService(t,RealService)
120
		t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
121
		return setmetatable(t,FakeService_Metatable)
122
	end
123
124
	--Fake game object
125
	local FakeGame = {
126
		GetService = function(self,s)
127
			return rawget(self,s) or RealGame:GetService(s)
128
		end,
129
		Players = FakeService({
130
			LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
131
		},"Players"),
132
		UserInputService = FakeService(UIS,"UserInputService"),
133
		ContextActionService = FakeService(CAS,"ContextActionService"),
134
		RunService = FakeService({
135
			_btrs = {},
136
			RenderStepped = RealGame:GetService("RunService").Heartbeat,
137
			BindToRenderStep = function(self,name,_,fun)
138
				self._btrs[name] = self.Heartbeat:Connect(fun)
139
			end,
140
			UnbindFromRenderStep = function(self,name)
141
				self._btrs[name]:Disconnect()
142
			end,
143
		},"RunService")
144
	}
145
	rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
146
	FakeGame.service = FakeGame.GetService
147
	FakeService(FakeGame,game)
148
	--Changing owner to fake player object to support owner:GetMouse()
149
	game,owner = FakeGame,FakeGame.Players.LocalPlayer
150
end
151
--By Rufus14
152
mouse = game.Players.LocalPlayer:GetMouse()
153
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
154
	if v.ClassName == "Shirt" or v.ClassName == "Pants" or v.ClassName == "ShirtGraphic" or v.ClassName == "Accessory" then
155
		v:Remove()
156
	end
157
end
158
local txtfag = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
159
txtfag.Adornee = suckadick
160
txtfag.Name = "kys nigga"
161
txtfag.Size = UDim2.new(2, 0, 1.2, 0)
162
txtfag.StudsOffset = Vector3.new(-5, 3, 0)
163
local textfag = Instance.new("TextLabel", txtfag)
164
textfag.Size = UDim2.new(6, 0, 1, 0)
165
textfag.FontSize = "Size8"
166
textfag.TextScaled = true
167
textfag.TextTransparency = 0
168
textfag.BackgroundTransparency = 1
169
textfag.TextTransparency = 0
170
textfag.TextStrokeTransparency = 0
171
textfag.Font = "Cartoon"
172
textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
173
textfag.Text = game.Players.LocalPlayer.Character.Name.." the Anti-Furry School Shooter"
174
v = Instance.new("Part")
175
v.Name = "ColorBrick"
176
v.Parent = part
177
v.FormFactor = "Symmetric"
178
v.Anchored = true
179
v.CanCollide = false
180
v.BottomSurface = "Smooth"
181
v.TopSurface = "Smooth"
182
v.Size = Vector3.new(10, 5, 3)
183
v.Transparency = 0.7
184
v.BrickColor = BrickColor.new("Really black")
185
v.Transparency = 1
186
textfag.TextColor3 = v.BrickColor.Color
187
textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
188
v.Shape = "Block"
189
shirt = Instance.new("Shirt", game.Players.LocalPlayer.Character)
190
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=54698632"
191
song = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
192
song.SoundId = "rbxassetid://165704299"
193
song.Looped = true
194
song.Volume = 10
195
knife = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
196
knife.SoundId = "rbxassetid://186311262"
197
knife.Looped = false
198
knife.Volume = 10
199
dog = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
200
dog.SoundId = "rbxassetid://132514715"
201
dog.Looped = false
202
dog.Volume = 10
203
kick = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
204
kick.SoundId = "rbxassetid://621571142"
205
kick.Looped = false
206
kick.Volume = 10
207
shoosh = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
208
shoosh.SoundId = "rbxassetid://145486992"
209
shoosh.PlaybackSpeed = 2.1
210
shoosh.Looped = false
211
shoosh.Volume = 10
212
nope = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
213
nope.SoundId = "rbxassetid://323901968"
214
nope.Looped = false
215
nope.Volume = 10
216
canuse=true
217
--Converted with ttyyuu12345's model to script plugin v4
218
function sandbox(var,func)
219
	local env = getfenv(func)
220
	local newenv = setmetatable({},{
221
		__index = function(self,k)
222
			if k=="script" then
223
				return var
224
			else
225
				return env[k]
226
			end
227
		end,
228
	})
229
	setfenv(func,newenv)
230
	return func
231
end
232
cors = {}
233
mas = Instance.new("Model",game:GetService("Lighting"))
234
Part0 = Instance.new("Part")
235
SpecialMesh1 = Instance.new("SpecialMesh")
236
Part0.Name = "Baseball fanatic's cap"
237
Part0.Parent = mas
238
Part0.Anchored = false
239
Part0.FormFactor = Enum.FormFactor.Symmetric
240
Part0.Size = Vector3.new(1, 1, 2)
241
Part0.CFrame = CFrame.new(76.1800003, 0.500001013, 26.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1)
242
Part0.BottomSurface = Enum.SurfaceType.Smooth
243
Part0.TopSurface = Enum.SurfaceType.Smooth
244
Part0.Position = Vector3.new(76.1800003, 0.500001013, 26.2000008)
245
Part0:BreakJoints()
246
SpecialMesh1.Parent = Part0
247
SpecialMesh1.MeshId = "http://www.roblox.com/asset/?id=16190466"
248
SpecialMesh1.TextureId = "http://www.roblox.com/asset/?id=31661094"
249
SpecialMesh1.MeshType = Enum.MeshType.FileMesh
250
SpecialMesh1.Scale = Vector3.new(1.1,1.1,1.1)
251
weld = Instance.new("Weld", game.Players.LocalPlayer.Character.Head)
252
weld.Part0 = game.Players.LocalPlayer.Character.Head
253
weld.Part1 = Part0
254
weld.C0 = weld.C0 * CFrame.new(0,0.3,0.04) * CFrame.fromEulerAnglesXYZ(0.5,math.pi/1,0)
255
surface = Instance.new("SurfaceGui", game.Players.LocalPlayer.Character.Torso)
256
text = Instance.new("TextLabel", surface)
257
text.Text = "WRATH"
258
text.Size = UDim2.new(1,1, 1,1)
259
text.TextSize = 230
260
text.Font = "Fantasy"
261
text.TextColor3 = Color3.fromRGB(255,0,0)
262
text.BackgroundTransparency = 1
263
text.Position = UDim2.new(0, 0,0, -135)
264
issoneplaying = false
265
cankillafurfag = false
266
usedononeperson = false
267
for i,v in pairs(mas:GetChildren()) do
268
	v.Parent = game:GetService("Players").LocalPlayer.Character
269
	pcall(function() v:MakeJoints() end)
270
end
271
mas:Destroy()
272
for i,v in pairs(cors) do
273
	spawn(function()
274
		pcall(v)
275
	end)
276
end
277
function woosh(key)
278
	key = key:lower()
279
	if key == "q" and canuse then
280
		game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, mouse.Hit.p)
281
		cankillafurfag = true
282
		local velo = Instance.new("BodyVelocity", game.Players.LocalPlayer.Character.Torso)
283
		velo.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
284
		velo.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 80
285
		wait(0.1)
286
		velo:destroy()
287
		wait(0.5)
288
		cankillafurfag = false
289
	end
290
end
291
grabbd = false
292
mouse = game.Players.LocalPlayer:GetMouse()
293
canuse = true
294
function erichagrabvagina(key)
295
	key = key:lower()
296
	if key == "z" then
297
		if canuse then
298
			canuse = false
299
			grabbd = false
300
			local righthandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
301
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
302
			local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
303
			rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
304
			rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
305
			rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
306
			rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
307
			local lefthandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
308
			game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Remove()
309
			local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
310
			lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
311
			lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
312
			lhandweld.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
313
			lhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
314
			local rootgrapclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
315
			print(game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0)
316
			game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:destroy()
317
			local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
318
			humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
319
			humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
320
			for i = 0,1 , 0.03 do
321
				lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.57205963, 0.78012085, 0, 0.866025567, 0.499999315, 2.38418579e-07, -0.49999851, 0.86602515, -2.7365548e-08, 5.96046448e-08, 4.47034836e-08, 1.00000143),i)
322
				rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.34461975, 0.538200378, 0.223114014, 0.866026521, -0.499998093, 2.95415521e-06, 0.0435718782, 0.0754677951, -0.996196151, 0.49809581, 0.862733483, 0.0871396363),i)
323
				humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.258819938, 0, -0.965926111, 0, 1, 0, 0.965926111, 0, 0.258819938),i)
324
				game:GetService("RunService").RenderStepped:wait()
325
			end
326
			wait(1)
327
			local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
328
			sensoryee.Size = Vector3.new(1,1,1)
329
			sensoryee.CanCollide = false
330
			sensoryee.Transparency = 1
331
			sensoryee:BreakJoints()
332
			local weldsensor = Instance.new("Weld", sensoryee)
333
			weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
334
			weldsensor.Part1 = sensoryee
335
			weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
336
			local function gotgrabd(part)
337
				sensoryee:destroy()
338
				local humanoid = part.Parent:findFirstChild("Humanoid")
339
				if humanoid then
340
					for q,w in pairs(humanoid.Parent:GetChildren()) do
341
						if w.ClassName == "Accessory" or w.ClassName == "Hat" then
342
							local humanoidrootpart1 = humanoid.Parent:findFirstChild("HumanoidRootPart")
343
							local handd = w:findFirstChild("Handle")
344
							if handd then
345
								mesh = w.Handle.Mesh
346
							end
347
							if handd and mesh.MeshId == "rbxassetid://188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or mesh.MeshId == "rbxassetid://170939831" or mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or mesh.MeshId == "rbxassetid://135446047" or mesh.MeshId == "rbxassetid://335037790" or mesh.MeshId == "rbxassetid://361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or mesh.MeshId == "rbxassetid://1374148" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
348
								grabbd = true
349
								if humanoidrootpart1 then
350
									humanoidrootpart1:destroy()
351
								else
352
									humanoid.PlatformStand = true
353
								end
354
								local furfagweld = Instance.new("Weld", humanoid.Parent.Head)
355
								furfagweld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
356
								furfagweld.Part1 = humanoid.Parent.Head
357
								furfagweld.C0 = furfagweld.C0 * CFrame.fromEulerAnglesXYZ(math.pi/2,0,math.pi/2) * CFrame.new(0,0.8,1)
358
								wait(0.4)
359
								for i = 0,1 , 0.03 do
360
									lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),i)
361
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.55997467, 0.699748993, -0.462905884, 0.973860145, -0.131164223, 0.185456812, 0.179209024, -0.0580353662, -0.982097864, 0.139579147, 0.989661396, -0.0330126062),i)
362
									humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
363
									game:GetService("RunService").RenderStepped:wait()
364
								end
365
								local AAAAAAA = Instance.new("Sound", humanoid.Parent.Head)
366
								AAAAAAA.SoundId = "rbxassetid://906084456"
367
								AAAAAAA.Volume = 10
368
								AAAAAAA:Play()
369
								wait(1.6)
370
								nope:Play()
371
								for i = 0,1 , 0.05 do
372
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.51885986, 0.417861938, 0.185928345, 0.973860025, -0.213819563, 0.0766805559, 0.179207832, 0.515773833, -0.837772012, 0.139582247, 0.829614341, 0.540609598),i)
373
									game:GetService("RunService").RenderStepped:wait()
374
								end
375
								furfagweld:destroy()
376
								local killyourselfXDDD = Instance.new("BodyVelocity", humanoid.Parent.Torso)
377
								killyourselfXDDD.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
378
								killyourselfXDDD.Velocity = Vector3.new(0,250,0)
379
								for i = 0,1 , 0.1 do
380
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.42082214, 1.13207245, -0.0470123291, 0.973861814, 0.129406601, 0.186686218, 0.179204732, -0.942722261, -0.28135857, 0.139584601, 0.307459116, -0.941270649),i)
381
									game:GetService("RunService").RenderStepped:wait()
382
								end
383
								killyourselfXDDD:destroy()
384
								wait(2)
385
								local boom = Instance.new("Explosion", humanoid.Parent.Torso)
386
								boom.Position = humanoid.Parent.Torso.Position
387
								humanoid.Health = 0
388
								AAAAAAA:destroy()
389
								for i = 0,1 , 0.05 do
390
									lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),i)
391
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),i)
392
									humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0),i)
393
									game:GetService("RunService").RenderStepped:wait()
394
								end
395
								humanoidrootpart:destroy()
396
								lhandweld:destroy()
397
								rhandweld:destroy()
398
								lefthandclone.Parent = game.Players.LocalPlayer.Character.Torso
399
								righthandclone.Parent = game.Players.LocalPlayer.Character.Torso
400
								rootgrapclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
401
								canuse = true
402
							end
403
						end
404
					end
405
				end
406
			end
407
			sensoryee.Touched:connect(gotgrabd)
408
			for i = 0,1 , 0.05 do
409
				rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(0.922836304, 0.58115387, -0.514007568, 0.866021395, 0.482969463, 0.129411131, -0.0435746014, 0.330732942, -0.942718983, -0.498106986, 0.810773432, 0.307467461),i)
410
				humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.42261228, 0, 0.906311631, 0, 1, 0, -0.906311631, 0, 0.42261228),i)
411
				game:GetService("RunService").RenderStepped:wait()
412
			end
413
			if not grabbd then
414
				sensoryee:destroy()
415
				for i = 0,1 , 0.05 do
416
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),i)
417
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),i)
418
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0),i)
419
					game:GetService("RunService").RenderStepped:wait()
420
				end
421
				humanoidrootpart:destroy()
422
				lhandweld:destroy()
423
				rhandweld:destroy()
424
				lefthandclone.Parent = game.Players.LocalPlayer.Character.Torso
425
				righthandclone.Parent = game.Players.LocalPlayer.Character.Torso
426
				rootgrapclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
427
				canuse = true
428
			end
429
		end
430
	end
431
end
432
mouse.KeyDown:connect(erichagrabvagina)
433
SLAPPP = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
434
SLAPPP.SoundId = "rbxassetid://1074184175"
435
SLAPPP.TimePosition = 1.2
436
function SLAPD(key)
437
	key = key:lower()
438
	if key == "x" then
439
		if canuse then
440
			canuse = false
441
			grabbd = false
442
			local righthandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
443
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
444
			local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
445
			rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
446
			rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
447
			rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
448
			rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
449
			local lefthandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
450
			game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Remove()
451
			local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
452
			lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
453
			lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
454
			lhandweld.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
455
			lhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
456
			local rootgrapclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
457
			print(game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0)
458
			game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:destroy()
459
			local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
460
			humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
461
			humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
462
			for i = 0,1 , 0.03 do
463
				lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.57205963, 0.78012085, 0, 0.866025567, 0.499999315, 2.38418579e-07, -0.49999851, 0.86602515, -2.7365548e-08, 5.96046448e-08, 4.47034836e-08, 1.00000143),i)
464
				rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.34461975, 0.538200378, 0.223114014, 0.866026521, -0.499998093, 2.95415521e-06, 0.0435718782, 0.0754677951, -0.996196151, 0.49809581, 0.862733483, 0.0871396363),i)
465
				humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.258819938, 0, -0.965926111, 0, 1, 0, 0.965926111, 0, 0.258819938),i)
466
				game:GetService("RunService").RenderStepped:wait()
467
			end
468
			local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
469
			sensoryee.Size = Vector3.new(1,1,1)
470
			sensoryee.CanCollide = false
471
			sensoryee.Transparency = 1
472
			sensoryee:BreakJoints()
473
			local weldsensor = Instance.new("Weld", sensoryee)
474
			weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
475
			weldsensor.Part1 = sensoryee
476
			weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
477
			local function gotgrabd(part)
478
				sensoryee:destroy()
479
				local humanoid = part.Parent:findFirstChild("Humanoid")
480
				if humanoid then
481
					for q,w in pairs(humanoid.Parent:GetChildren()) do
482
						if w.ClassName == "Accessory" or w.ClassName == "Hat" then
483
							local humanoidrootpart1 = humanoid.Parent:findFirstChild("HumanoidRootPart")
484
							local handd = w:findFirstChild("Handle")
485
							if handd then
486
								mesh = w.Handle.Mesh
487
							end
488
							if handd and mesh.MeshId == "rbxassetid://188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or mesh.MeshId == "rbxassetid://170939831" or mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or mesh.MeshId == "rbxassetid://135446047" or mesh.MeshId == "rbxassetid://335037790" or mesh.MeshId == "rbxassetid://361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or mesh.MeshId == "rbxassetid://1374148" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
489
									local humanoid = part.Parent:findFirstChild("Humanoid")
490
									local kysniba = Instance.new("BodyVelocity", humanoid.Parent.Torso)
491
									kysniba.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
492
									kysniba.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 35
493
				                    if humanoid then
494
										SLAPPP.TimePosition = 1.05
495
										SLAPPP:Play()
496
										SLAPPP.Volume = 10
497
										local dedsound = humanoid.Parent.Head:findFirstChild("Died")
498
										if dedsound then
499
											dedsound:Play()
500
											dedsound.Volume = 8
501
										end
502
				                        humanoid.Health = humanoid.Health - math.random(45,60)
503
				                        humanoid.PlatformStand = true
504
				                        local lshclone = humanoid.Parent.Torso["Left Shoulder"]:Clone()
505
				                        local rshclone = humanoid.Parent.Torso["Right Shoulder"]:Clone()
506
				                        local lhclone = humanoid.Parent.Torso["Left Hip"]:Clone()
507
				                        local rhclone = humanoid.Parent.Torso["Right Hip"]:Clone()
508
				                        local leftarm = humanoid.Parent["Left Arm"]
509
							            local rightrm = humanoid.Parent["Right Arm"]
510
							            local leftleg = humanoid.Parent["Left Leg"]
511
							            local rightleg = humanoid.Parent["Right Leg"]
512
							            humanoid.Parent.Torso["Left Hip"]:destroy()
513
							            local head = humanoid.Parent.Head
514
							            glue = Instance.new("Glue", humanoid.Parent.Torso)
515
							            glue.Part0 = humanoid.Parent.Torso
516
							            glue.Part1 = leftleg
517
							            glue.Name = "Left leg"
518
							            collider = Instance.new("Part", leftleg)
519
							            collider.Position = Vector3.new(0,999,0)
520
							            collider.Size = Vector3.new(1.5, 1, 1)
521
							            collider.Shape = "Cylinder"
522
							            local weld = Instance.new("Weld", collider)
523
							            weld.Part0 = leftleg
524
							            weld.Part1 = collider
525
							            weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
526
							            collider.TopSurface = "Smooth"
527
							            collider.BottomSurface = "Smooth"
528
							            collider.formFactor = "Symmetric"
529
							            glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
530
							            glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
531
							            collider.Transparency = 1
532
							            ------------
533
							            humanoid.Parent.Torso["Right Hip"]:destroy()
534
							            glue1 = Instance.new("Glue", humanoid.Parent.Torso)
535
							            glue1.Part0 = humanoid.Parent.Torso
536
							            glue1.Part1 = rightleg
537
							            glue1.Name = "Right leg"
538
							            collider1 = Instance.new("Part", rightleg)
539
							            collider1.Position = Vector3.new(0,9999,0)
540
							            collider1.Size = Vector3.new(1.5, 1, 1)
541
							            collider1.Shape = "Cylinder"
542
							            local weld1 = Instance.new("Weld", collider1)
543
							            weld1.Part0 = rightleg
544
							            weld1.Part1 = collider1
545
							            weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
546
							            collider1.TopSurface = "Smooth"
547
							            collider1.BottomSurface = "Smooth"
548
							            collider1.formFactor = "Symmetric"
549
							            glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
550
							            glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
551
							            collider1.Transparency = 1
552
							            ------------
553
							            humanoid.Parent.Torso["Right Shoulder"]:destroy()
554
							            glue11 = Instance.new("Glue", humanoid.Parent.Torso)
555
							            glue11.Part0 = humanoid.Parent.Torso
556
							            glue11.Part1 = rightrm
557
							            glue11.Name = "Right shoulder"
558
							            collider11 = Instance.new("Part", rightrm)
559
							            collider11.Position = Vector3.new(0,9999,0)
560
							            collider11.Size = Vector3.new(1.8,1,1)
561
							            collider11.Shape = "Cylinder"
562
							            local weld11 = Instance.new("Weld", collider11)
563
							            weld11.Part0 = rightrm
564
							            weld11.Part1 = collider11
565
							            weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
566
							            collider11.TopSurface = "Smooth"
567
							            collider11.BottomSurface = "Smooth"
568
							            collider11.formFactor = "Symmetric"
569
							            glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
570
							            glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
571
							            collider11.Transparency = 1
572
							            ------------
573
							            humanoid.Parent.Torso["Left Shoulder"]:destroy()
574
							            glue111 = Instance.new("Glue", humanoid.Parent.Torso)
575
							            glue111.Part0 = humanoid.Parent.Torso
576
							            glue111.Part1 = leftarm
577
							            glue111.Name = "Left shoulder"
578
							            collider111 = Instance.new("Part", leftarm)
579
							            collider111.Position = Vector3.new(0,9999,0)
580
							            collider111.Size = Vector3.new(1.5, 1, 1)
581
							            collider111.Shape = "Cylinder"
582
							            local weld111 = Instance.new("Weld", collider111)
583
							            weld111.Part0 = leftarm
584
							            weld111.Part1 = collider111
585
							            weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
586
							            collider111.TopSurface = "Smooth"
587
							            collider111.BottomSurface = "Smooth"
588
							            collider111.formFactor = "Symmetric"
589
							            glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
590
							            glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
591
							            collider111.Transparency = 1
592
							            -----------------
593
										wait(0.1)
594
										kysniba:destroy()
595
							            wait(3.5)
596
							            lshclone.Parent = humanoid.Parent.Torso
597
							            glue:destroy()
598
							            rshclone.Parent = humanoid.Parent.Torso
599
							            glue1:destroy()
600
							            lhclone.Parent = humanoid.Parent.Torso
601
							            glue11:destroy()
602
							            rhclone.Parent = humanoid.Parent.Torso
603
							            glue111:destroy()
604
							            collider:destroy()
605
							            collider1:destroy()
606
							            collider11:destroy()
607
							            collider111:destroy()
608
							            humanoid.PlatformStand = false
609
								end
610
								canuse = true
611
							end
612
						end
613
					end
614
				end
615
			end
616
			sensoryee.Touched:connect(gotgrabd)
617
			for i = 0,1 , 0.05 do
618
				rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(0.922836304, 0.58115387, -0.514007568, 0.866021395, 0.482969463, 0.129411131, -0.0435746014, 0.330732942, -0.942718983, -0.498106986, 0.810773432, 0.307467461),i)
619
				humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.42261228, 0, 0.906311631, 0, 1, 0, -0.906311631, 0, 0.42261228),i)
620
				game:GetService("RunService").RenderStepped:wait()
621
			end
622
			if not grabbd then
623
				sensoryee:destroy()
624
				for i = 0,1 , 0.05 do
625
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),i)
626
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),i)
627
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0),i)
628
					game:GetService("RunService").RenderStepped:wait()
629
				end
630
				humanoidrootpart:destroy()
631
				lhandweld:destroy()
632
				rhandweld:destroy()
633
				lefthandclone.Parent = game.Players.LocalPlayer.Character.Torso
634
				righthandclone.Parent = game.Players.LocalPlayer.Character.Torso
635
				rootgrapclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
636
				canuse = true
637
			end
638
		end
639
	end
640
end
641
mouse.KeyDown:connect(SLAPD)
642
function killwithtec9(key)
643
	key = key:lower()
644
	if key == "e" then
645
		if canuse then
646
			usedononeperson = true
647
			canuse = false
648
			for i,v in pairs(workspace:GetChildren()) do
649
				if v.ClassName == "Model" then
650
					humanoid = v:findFirstChild("Humanoid")
651
				end
652
				if humanoid then
653
					for q,w in pairs(v:GetChildren()) do
654
						if w.ClassName == "Accessory" or w.ClassName == "Hat" then
655
							local humanoidrootpart = humanoid.Parent:findFirstChild("HumanoidRootPart")
656
							local handd = w:findFirstChild("Handle")
657
							if handd then
658
								mesh = w.Handle.Mesh
659
							end
660
							if humanoidrootpart then
661
								if handd and usedononeperson and mesh.MeshId == "rbxassetid://188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or mesh.MeshId == "rbxassetid://170939831" or mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or mesh.MeshId == "rbxassetid://135446047" or mesh.MeshId == "rbxassetid://335037790" or mesh.MeshId == "rbxassetid://361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or mesh.MeshId == "rbxassetid://1374148" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
662
								usedononeperson = false
663
								canuse = false
664
								if not issoneplaying then
665
									song:Play()
666
									issoneplaying = true
667
								end
668
								gun = Instance.new("Part", game.Players.LocalPlayer.Character)
669
								gun.Size = Vector3.new(0.5, 1, 2)
670
								gun.CanCollide = false
671
								gun.Name = "Gunn"
672
								gun:BreakJoints()
673
								weld = Instance.new("Weld", gun)
674
								weld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
675
								weld.Part1 = gun
676
								weld.C0 = weld.C0 * CFrame.new(-0.2,-1.7,-0.25) * CFrame.fromEulerAnglesXYZ(math.pi/-2,0,0)
677
								local mesh = Instance.new("SpecialMesh", gun)
678
								mesh.MeshId = "rbxassetid://742046473"
679
								mesh.TextureId = "rbxassetid://742046691"
680
								mesh.Scale = Vector3.new(0.35,0.35,0.35)
681
								local righthandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
682
								game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
683
								local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
684
								rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
685
								rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
686
								rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
687
								rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
688
								for i = 0,1 , 0.05 do
689
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.2521863, 0.696266413, 0.0165557861, -2.93719313e-06, 0.173656181, 0.984807909, 0.984808981, -0.171007469, 0.0301576983, 0.173647076, 0.969846308, -0.171017706),i)
690
									game:GetService("RunService").RenderStepped:wait()
691
								end
692
								for i = 0,1 , 0.05 do
693
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.426296234, 0, 0, 0, 0.999999702, 1.0000006, -3.74764204e-06, 0, 3.61353045e-06, 1, 0),i)
694
									game:GetService("RunService").RenderStepped:wait()
695
								end							
696
								for i = 1,50 do
697
									game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, v.Torso.Position)
698
									game:GetService("RunService").RenderStepped:wait()
699
								end
700
								for i = 0,1 , 0.3 do
701
									game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, v.Torso.Position)
702
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.2521863, 0.696266413, 0.0165557861, -2.93719313e-06, 0.173656181, 0.984807909, 0.984808981, -0.171007469, 0.0301576983, 0.173647076, 0.969846308, -0.171017706),i)
703
									game:GetService("RunService").RenderStepped:wait()
704
								end
705
								local shotsound = Instance.new("Sound", gun)
706
						        shotsound.EmitterSize = 2
707
						        shotsound.SoundId = "rbxassetid://745308042"
708
						        shotsound.Volume = 10
709
						        shotsound:Play()
710
								if humanoid then
711
									local humanoidrootpart = humanoid.Parent:findFirstChild("HumanoidRootPart")
712
									if humanoidrootpart then
713
										humanoidrootpart:destroy()
714
									else
715
										humanoid.PlatformStand = true
716
									end
717
									lshclone = humanoid.Parent.Torso["Left Shoulder"]:Clone()
718
									rshclone = humanoid.Parent.Torso["Right Shoulder"]:Clone()
719
									lhclone = humanoid.Parent.Torso["Left Hip"]:Clone()
720
									rhclone = humanoid.Parent.Torso["Right Hip"]:Clone()
721
									local leftarm = humanoid.Parent["Left Arm"]
722
									local rightrm = humanoid.Parent["Right Arm"]
723
									local leftleg = humanoid.Parent["Left Leg"]
724
									local rightleg = humanoid.Parent["Right Leg"]
725
									humanoid.Parent.Torso["Left Hip"]:destroy()
726
									local head = humanoid.Parent.Head
727
									glue = Instance.new("Glue", humanoid.Parent.Torso)
728
									glue.Part0 = humanoid.Parent.Torso
729
									glue.Part1 = leftleg
730
									glue.Name = "Left leg"
731
									collider = Instance.new("Part", leftleg)
732
									collider.Position = Vector3.new(0,999,0)
733
									collider.Size = Vector3.new(1.5, 1, 1)
734
									collider.Shape = "Cylinder"
735
									local weld = Instance.new("Weld", collider)
736
									weld.Part0 = leftleg
737
									weld.Part1 = collider
738
									weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
739
									collider.TopSurface = "Smooth"
740
									collider.BottomSurface = "Smooth"
741
									collider.formFactor = "Symmetric"
742
									glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
743
									glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
744
									collider.Transparency = 1
745
									------------
746
									humanoid.Parent.Torso["Right Hip"]:destroy()
747
									glue1 = Instance.new("Glue", humanoid.Parent.Torso)
748
									glue1.Part0 = humanoid.Parent.Torso
749
									glue1.Part1 = rightleg
750
									glue1.Name = "Right leg"
751
									collider1 = Instance.new("Part", rightleg)
752
									collider1.Position = Vector3.new(0,9999,0)
753
									collider1.Size = Vector3.new(1.5, 1, 1)
754
									collider1.Shape = "Cylinder"
755
									local weld1 = Instance.new("Weld", collider1)
756
									weld1.Part0 = rightleg
757
									weld1.Part1 = collider1
758
									weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
759
									collider1.TopSurface = "Smooth"
760
									collider1.BottomSurface = "Smooth"
761
									collider1.formFactor = "Symmetric"
762
									glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
763
									glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
764
									collider1.Transparency = 1
765
									------------
766
									humanoid.Parent.Torso["Right Shoulder"]:destroy()
767
									glue11 = Instance.new("Glue", humanoid.Parent.Torso)
768
									glue11.Part0 = humanoid.Parent.Torso
769
									glue11.Part1 = rightrm
770
									glue11.Name = "Right shoulder"
771
									collider11 = Instance.new("Part", rightrm)
772
									collider11.Position = Vector3.new(0,9999,0)
773
									collider11.Size = Vector3.new(1.8,1,1)
774
									collider11.Shape = "Cylinder"
775
									local weld11 = Instance.new("Weld", collider11)
776
									weld11.Part0 = rightrm
777
									weld11.Part1 = collider11
778
									weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
779
									collider11.TopSurface = "Smooth"
780
									collider11.BottomSurface = "Smooth"
781
									collider11.formFactor = "Symmetric"
782
									glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
783
									glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
784
									collider11.Transparency = 1
785
									------------
786
									humanoid.Parent.Torso["Left Shoulder"]:destroy()
787
									glue111 = Instance.new("Glue", humanoid.Parent.Torso)
788
									glue111.Part0 = humanoid.Parent.Torso
789
									glue111.Part1 = leftarm
790
									glue111.Name = "Left shoulder"
791
									collider111 = Instance.new("Part", leftarm)
792
									collider111.Position = Vector3.new(0,9999,0)
793
									collider111.Size = Vector3.new(1.5, 1, 1)
794
									collider111.Shape = "Cylinder"
795
									local weld111 = Instance.new("Weld", collider111)
796
									weld111.Part0 = leftarm
797
									weld111.Part1 = collider111
798
									weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
799
									collider111.TopSurface = "Smooth"
800
									collider111.BottomSurface = "Smooth"
801
									collider111.formFactor = "Symmetric"
802
									glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
803
									glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
804
									collider111.Transparency = 1
805
								end
806
								for i = 0,1 , 0.3 do
807
									game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, v.Torso.Position)
808
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.426296234, 0, 0, 0, 0.999999702, 1.0000006, -3.74764204e-06, 0, 3.61353045e-06, 1, 0),i)
809
									game:GetService("RunService").RenderStepped:wait()
810
								end
811
								wait(0.1)
812
								for i = 0,1 , 0.03 do
813
									game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, v.Torso.Position)
814
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),i)
815
									game:GetService("RunService").RenderStepped:wait()
816
								end
817
								gun:destroy()
818
								rhandweld:destroy()
819
								righthandclone.Parent = game.Players.LocalPlayer.Character.Torso
820
								canuse = true
821
							end
822
							end
823
						end
824
					end
825
				end
826
			end
827
			usedononeperson = false
828
			canuse = true
829
		end
830
	end
831
end
832
mouse.KeyDown:connect(killwithtec9)
833
canlegkick = true
834
function kicksomefagsxd(key)
835
	key = key:lower()
836
	if key == "f" then
837
		if canuse then
838
			canuse = false
839
			local legcl = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
840
			game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
841
			local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
842
			llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
843
			llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
844
			llegweld.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
845
			for i = 0,1 , 0.1 do
846
				llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.499996662, -1.1485647, 0.598503113, 1.75394255e-26, -1.47170199e-26, 0.99999994, -0.766049445, 0.642781913, 0, -0.642781734, -0.766049743, 0),i)
847
				game:GetService("RunService").RenderStepped:wait()
848
			end
849
			shoosh:Play()
850
			local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Left Leg"])
851
			sensoryee.Size = Vector3.new(1,1,1)
852
			sensoryee.CanCollide = false
853
			sensoryee.Transparency = 1
854
			sensoryee:BreakJoints()
855
			local weldsensor = Instance.new("Weld", sensoryee)
856
			weldsensor.Part0 = game.Players.LocalPlayer.Character["Left Leg"]
857
			weldsensor.Part1 = sensoryee
858
			weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
859
			local function ragdollafurry(part)
860
				local humanoid = part.Parent:findFirstChild("Humanoid")
861
				if humanoid then
862
									sensoryee:destroy()
863
									kick:Play()
864
									local kysniba = Instance.new("BodyVelocity", humanoid.Parent.Torso)
865
									kysniba.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
866
									kysniba.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 35
867
									local humanoid = part.Parent:findFirstChild("Humanoid")
868
				                    if humanoid then
869
				                        humanoid.Health = humanoid.Health - math.random(45,60)
870
				                        humanoid.PlatformStand = true
871
				                        local lshclone = humanoid.Parent.Torso["Left Shoulder"]:Clone()
872
				                        local rshclone = humanoid.Parent.Torso["Right Shoulder"]:Clone()
873
				                        local lhclone = humanoid.Parent.Torso["Left Hip"]:Clone()
874
				                        local rhclone = humanoid.Parent.Torso["Right Hip"]:Clone()
875
				                        local leftarm = humanoid.Parent["Left Arm"]
876
							            local rightrm = humanoid.Parent["Right Arm"]
877
							            local leftleg = humanoid.Parent["Left Leg"]
878
							            local rightleg = humanoid.Parent["Right Leg"]
879
							            humanoid.Parent.Torso["Left Hip"]:destroy()
880
							            local head = humanoid.Parent.Head
881
							            glue = Instance.new("Glue", humanoid.Parent.Torso)
882
							            glue.Part0 = humanoid.Parent.Torso
883
							            glue.Part1 = leftleg
884
							            glue.Name = "Left leg"
885
							            collider = Instance.new("Part", leftleg)
886
							            collider.Position = Vector3.new(0,999,0)
887
							            collider.Size = Vector3.new(1.5, 1, 1)
888
							            collider.Shape = "Cylinder"
889
							            local weld = Instance.new("Weld", collider)
890
							            weld.Part0 = leftleg
891
							            weld.Part1 = collider
892
							            weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
893
							            collider.TopSurface = "Smooth"
894
							            collider.BottomSurface = "Smooth"
895
							            collider.formFactor = "Symmetric"
896
							            glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
897
							            glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
898
							            collider.Transparency = 1
899
							            ------------
900
							            humanoid.Parent.Torso["Right Hip"]:destroy()
901
							            glue1 = Instance.new("Glue", humanoid.Parent.Torso)
902
							            glue1.Part0 = humanoid.Parent.Torso
903
							            glue1.Part1 = rightleg
904
							            glue1.Name = "Right leg"
905
							            collider1 = Instance.new("Part", rightleg)
906
							            collider1.Position = Vector3.new(0,9999,0)
907
							            collider1.Size = Vector3.new(1.5, 1, 1)
908
							            collider1.Shape = "Cylinder"
909
							            local weld1 = Instance.new("Weld", collider1)
910
							            weld1.Part0 = rightleg
911
							            weld1.Part1 = collider1
912
							            weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
913
							            collider1.TopSurface = "Smooth"
914
							            collider1.BottomSurface = "Smooth"
915
							            collider1.formFactor = "Symmetric"
916
							            glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
917
							            glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
918
							            collider1.Transparency = 1
919
							            ------------
920
							            humanoid.Parent.Torso["Right Shoulder"]:destroy()
921
							            glue11 = Instance.new("Glue", humanoid.Parent.Torso)
922
							            glue11.Part0 = humanoid.Parent.Torso
923
							            glue11.Part1 = rightrm
924
							            glue11.Name = "Right shoulder"
925
							            collider11 = Instance.new("Part", rightrm)
926
							            collider11.Position = Vector3.new(0,9999,0)
927
							            collider11.Size = Vector3.new(1.8,1,1)
928
							            collider11.Shape = "Cylinder"
929
							            local weld11 = Instance.new("Weld", collider11)
930
							            weld11.Part0 = rightrm
931
							            weld11.Part1 = collider11
932
							            weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
933
							            collider11.TopSurface = "Smooth"
934
							            collider11.BottomSurface = "Smooth"
935
							            collider11.formFactor = "Symmetric"
936
							            glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
937
							            glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
938
							            collider11.Transparency = 1
939
							            ------------
940
							            humanoid.Parent.Torso["Left Shoulder"]:destroy()
941
							            glue111 = Instance.new("Glue", humanoid.Parent.Torso)
942
							            glue111.Part0 = humanoid.Parent.Torso
943
							            glue111.Part1 = leftarm
944
							            glue111.Name = "Left shoulder"
945
							            collider111 = Instance.new("Part", leftarm)
946
							            collider111.Position = Vector3.new(0,9999,0)
947
							            collider111.Size = Vector3.new(1.5, 1, 1)
948
							            collider111.Shape = "Cylinder"
949
							            local weld111 = Instance.new("Weld", collider111)
950
							            weld111.Part0 = leftarm
951
							            weld111.Part1 = collider111
952
							            weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
953
							            collider111.TopSurface = "Smooth"
954
							            collider111.BottomSurface = "Smooth"
955
							            collider111.formFactor = "Symmetric"
956
							            glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
957
							            glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
958
							            collider111.Transparency = 1
959
							            -----------------
960
										wait(0.1)
961
										kysniba:destroy()
962
							            wait(3.5)
963
							            lshclone.Parent = humanoid.Parent.Torso
964
							            glue:destroy()
965
							            rshclone.Parent = humanoid.Parent.Torso
966
							            glue1:destroy()
967
							            lhclone.Parent = humanoid.Parent.Torso
968
							            glue11:destroy()
969
							            rhclone.Parent = humanoid.Parent.Torso
970
							            glue111:destroy()
971
							            collider:destroy()
972
							            collider1:destroy()
973
							            collider11:destroy()
974
							            collider111:destroy()
975
							            humanoid.PlatformStand = false
976
					end
977
				end
978
			end
979
			sensoryee.Touched:connect(ragdollafurry)
980
			for i = 0,1 , 0.1 do
981
				llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.499996662, -1.02914703, -0.742607117, -5.87247582e-25, -2.47702398e-25, 0.99999994, 0.984806955, 0.173654884, 5.98444181e-25, -0.173654839, 0.984806955, 1.41960611e-25),i)
982
				game:GetService("RunService").RenderStepped:wait()
983
			end
984
			sensoryee:destroy()
985
			canlegkick = false
986
			llegweld:destroy()
987
			legcl.Parent = game.Players.LocalPlayer.Character.Torso
988
			canuse = true
989
		end
990
	end
991
end
992
mouse.KeyDown:connect(kicksomefagsxd)
993
function killsomeonesleepingXD(key)
994
	key = key:lower()
995
	if key == "t" then
996
		if canuse then
997
			print("Used: T")
998
			local humanoid = mouse.Target.Parent:findFirstChild("Humanoid")
999
			local humanoidroot = mouse.Target.Parent:findFirstChild("HumanoidRootPart")
1000
			local torso = mouse.Target.Parent:findFirstChild("Torso")
1001
			if humanoid then
1002
				print("Found Humanoid")
1003
				if humanoidroot then
1004
					
1005
				else
1006
					if canuse then
1007
						local furfaghat = humanoid.Parent:findFirstChildOfClass("Accessory")
1008
						local handd = furfaghat:findFirstChild("Handle")
1009
						if handd then
1010
							mesh = furfaghat.Handle.Mesh
1011
						end
1012
							if canuse and handd and mesh.MeshId == "rbxassetid://188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or mesh.MeshId == "rbxassetid://170939831" or mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or mesh.MeshId == "rbxassetid://135446047" or mesh.MeshId == "rbxassetid://335037790" or mesh.MeshId == "rbxassetid://361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or mesh.MeshId == "rbxassetid://1374148" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1013
									canuse = false
1014
									print("Someone fell down (no humanoidrootpart)")
1015
									textfag.Text = "begone thot"
1016
									if torso then
1017
										print("Found torso")
1018
										game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = torso.Position
1019
										wait(3)
1020
										game.Players.LocalPlayer.Character.Humanoid.WalkToPoint = game.Players.LocalPlayer.Character.Torso.Position
1021
									end
1022
									if not issoneplaying then
1023
										song:Play()
1024
										issoneplaying = true
1025
									end
1026
									gun = Instance.new("Part", game.Players.LocalPlayer.Character)
1027
									gun.Size = Vector3.new(0.5, 1, 2)
1028
									gun.CanCollide = false
1029
									gun.Name = "Gunn"
1030
									gun:BreakJoints()
1031
									weld = Instance.new("Weld", gun)
1032
									weld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
1033
									weld.Part1 = gun
1034
									weld.C0 = weld.C0 * CFrame.new(-0.2,-1.7,-0.25) * CFrame.fromEulerAnglesXYZ(math.pi/-2,0,0)
1035
									local mesh = Instance.new("SpecialMesh", gun)
1036
									mesh.MeshId = "rbxassetid://742046473"
1037
									mesh.TextureId = "rbxassetid://742046691"
1038
									mesh.Scale = Vector3.new(0.35,0.35,0.35)
1039
									local righthandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
1040
									game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
1041
									local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
1042
									rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
1043
									rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1044
									rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1045
									rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1046
									for i = 0,1 , 0.05 do
1047
										rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.391201019, 0.090927124, 0, 0, 0.999999583, 0.766052306, 0.642778099, 0, -0.64277786, 0.766052008, 0),i)
1048
										game:GetService("RunService").RenderStepped:wait()
1049
									end
1050
									textfag.Text = "boiy."
1051
									wait(1)
1052
									textfag.Text = "lol die XDD"
1053
									while humanoid.Health >= 0.01 do
1054
										local shotsound = Instance.new("Sound", gun)
1055
								        shotsound.EmitterSize = 2
1056
								        shotsound.SoundId = "rbxassetid://745308042"
1057
								        shotsound.Volume = 10
1058
								        shotsound:Play()
1059
										for i = 0,1 , 0.3 do
1060
											rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.643392563, 0.391479492, 0, 0, 0.999999583, 0.939700782, 0.341998577, 0, -0.341998577, 0.939699948, 0),i)
1061
											game:GetService("RunService").RenderStepped:wait()
1062
										end
1063
										humanoid.Health = humanoid.Health - 5
1064
										for i = 0,1 , 0.3 do
1065
											rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.391201019, 0.090927124, 0, 0, 0.999999583, 0.766052306, 0.642778099, 0, -0.64277786, 0.766052008, 0),i)
1066
											game:GetService("RunService").RenderStepped:wait()
1067
										end
1068
									end
1069
									textfag.Text = "no mercy"
1070
									wait(2)
1071
									rhandweld:destroy()
1072
									righthandclone.Parent = game.Players.LocalPlayer.Character.Torso
1073
									gun:destroy()
1074
									textfag.Text = game.Players.LocalPlayer.Character.Name.." the Anti-Furry School Shooter"
1075
									canuse = true
1076
								else
1077
									if humanoid.PlatformStand == true then
1078
										canuse = false
1079
										print("Someone fell down (platformstand)")
1080
									end
1081
						end
1082
					end
1083
				end
1084
			end
1085
		end
1086
	end
1087
end
1088
mouse.KeyDown:connect(killsomeonesleepingXD)
1089
function kyslol(key)
1090
	if key == "r" then
1091
		if canuse then
1092
			canuse = false
1093
			gun = Instance.new("Part", game.Players.LocalPlayer.Character)
1094
			gun.Size = Vector3.new(0.5, 1, 2)
1095
			gun.CanCollide = false
1096
			gun.Name = "Gunn"
1097
			gun:BreakJoints()
1098
			weld = Instance.new("Weld", gun)
1099
			weld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
1100
			weld.Part1 = gun
1101
			weld.C0 = weld.C0 * CFrame.new(-0.2,-1.7,-0.25) * CFrame.fromEulerAnglesXYZ(math.pi/-2,0,0)
1102
			local mesh = Instance.new("SpecialMesh", gun)
1103
			mesh.MeshId = "rbxassetid://742046473"
1104
			mesh.TextureId = "rbxassetid://742046691"
1105
			mesh.Scale = Vector3.new(0.35,0.35,0.35)
1106
			local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
1107
			rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
1108
			rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1109
			rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1110
			rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1111
			for i = 0,1 , 0.03 do
1112
				rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(3.32913208, 0.151973724, 0.160049438, 0.257815927, 0.962249994, 0.0871548727, 0.965930343, -0.258802414, 4.42634882e-06, 0.0225601513, 0.0841843933, -0.996189654),i)
1113
				game:GetService("RunService").RenderStepped:wait()
1114
			end
1115
			song:Stop()
1116
			wait(2)
1117
			function ragdoll()
1118
game.Players.LocalPlayer.Character.Archivable = true
1119
clone = game.Players.LocalPlayer.Character:Clone()
1120
clone.Parent = workspace
1121
for i,v in pairs(clone:GetChildren()) do
1122
    if v.ClassName == "Script" or v.ClassName == "LocalScript" then
1123
        v:destroy()
1124
    end
1125
    for i,p in pairs(v:GetChildren()) do
1126
    if p.ClassName == "Weld" or p.ClassName == "Motor6D" or p.ClassName == "BodyVelocity" then
1127
        p:destroy()
1128
    end
1129
end
1130
end
1131
for i,t in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
1132
    if t.ClassName == "Accessory" or t.ClassName == "ForceField" then
1133
        t:destroy()
1134
    end
1135
end
1136
vel = Instance.new("BodyVelocity", clone.Torso)
1137
vel.Velocity = clone.Torso.CFrame.lookVector * -5
1138
vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
1139
clone.Head.face.Texture = "http://www.roblox.com/asset/?id=161061608"
1140
using = false
1141
hit = Instance.new("Sound", clone.Torso)
1142
hit.SoundId = "rbxassetid://260430060"
1143
hit.Volume = 5
1144
hit1 = Instance.new("Sound", clone.Torso)
1145
hit1.SoundId = "rbxassetid://138087186"
1146
hit1.Volume = 5
1147
hit2 = Instance.new("Sound", clone.Torso)
1148
hit2.SoundId = "rbxassetid://131237241"
1149
hit2.Volume = 5
1150
hit3 = Instance.new("Sound", clone.Torso)
1151
hit3.SoundId = "rbxassetid://278062209"
1152
hit3.Volume = 5
1153
hit3.TimePosition = 0.33
1154
ded = Instance.new("Sound", clone.Torso)
1155
ded.SoundId = "rbxassetid://418892870"
1156
ded.Volume = 5
1157
local leftarm = clone:findFirstChild("Left Arm")
1158
local rightrm = clone:findFirstChild("Right Arm")
1159
local leftleg = clone:findFirstChild("Left Leg")
1160
local rightleg = clone:findFirstChild("Right Leg")
1161
local head = clone:findFirstChild("Head")
1162
for i, g in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
1163
    if g.ClassName == "Part" then
1164
        g:destroy()
1165
    end
1166
end
1167
for i, h in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
1168
    if h.ClassName == "Accesory" then
1169
        h:destroy()
1170
    end
1171
end
1172
game.Workspace.CurrentCamera.CameraSubject = head
1173
if head ~= nil then
1174
    local glue13 = Instance.new("Glue", clone.Torso)
1175
    glue13.Part0 = clone.Torso
1176
    glue13.Part1 = head
1177
    glue13.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
1178
    glue13.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
1179
    local collider13 = Instance.new("Part", head)
1180
    collider13.Position = Vector3.new(0,999,0)
1181
    collider13.Size = Vector3.new(0.5, 0.9, 0.7)
1182
    collider13.Shape = "Cylinder"
1183
    collider13.Transparency = 1
1184
    local weld = Instance.new("Weld", collider13)
1185
    weld.Part0 = head
1186
    weld.Part1 = collider13
1187
    weld.C0 = CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1188
    collider13.TopSurface = "Smooth"
1189
    collider13.BottomSurface = "Smooth"
1190
    collider13.formFactor = "Symmetric"
1191
end
1192
if leftleg ~= nil then
1193
local glue = Instance.new("Glue", clone.Torso)
1194
glue.Part0 = clone.Torso
1195
glue.Part1 = leftleg
1196
glue.Name = "Left leg"
1197
local collider = Instance.new("Part", leftleg)
1198
collider.Position = Vector3.new(0,999,0)
1199
collider.Size = Vector3.new(1.5, 1, 1)
1200
collider.Shape = "Cylinder"
1201
local weld = Instance.new("Weld", collider)
1202
weld.Part0 = leftleg
1203
weld.Part1 = collider
1204
weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1205
collider.TopSurface = "Smooth"
1206
collider.BottomSurface = "Smooth"
1207
collider.formFactor = "Symmetric"
1208
glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
1209
glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
1210
collider.Transparency = 1
1211
end
1212
------------
1213
if rightleg ~= nil then
1214
local glue1 = Instance.new("Glue", clone.Torso)
1215
glue1.Part0 = clone.Torso
1216
glue1.Part1 = rightleg
1217
glue1.Name = "Right leg"
1218
local collider1 = Instance.new("Part", rightleg)
1219
collider1.Position = Vector3.new(0,999,0)
1220
collider1.Size = Vector3.new(1.5, 1, 1)
1221
collider1.Shape = "Cylinder"
1222
local weld1 = Instance.new("Weld", collider1)
1223
weld1.Part0 = rightleg
1224
weld1.Part1 = collider1
1225
weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1226
collider1.TopSurface = "Smooth"
1227
collider1.BottomSurface = "Smooth"
1228
collider1.formFactor = "Symmetric"
1229
glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
1230
glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
1231
collider1.Transparency = 1
1232
end
1233
------------
1234
if rightrm ~= nil then
1235
local glue11 = Instance.new("Glue", clone.Torso)
1236
glue11.Part0 = clone.Torso
1237
glue11.Part1 = rightrm
1238
glue11.Name = "Right shoulder"
1239
local collider11 = Instance.new("Part", rightrm)
1240
collider11.Position = Vector3.new(0,9999,0)
1241
collider11.Size = Vector3.new(1.5,1,1)
1242
collider11.Shape = "Cylinder"
1243
local weld11 = Instance.new("Weld", collider11)
1244
weld11.Part0 = rightrm
1245
weld11.Part1 = collider11
1246
weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1247
collider11.TopSurface = "Smooth"
1248
collider11.BottomSurface = "Smooth"
1249
collider11.formFactor = "Symmetric"
1250
glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1251
glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1252
collider11.Transparency = 1
1253
end
1254
------------
1255
if leftarm ~= nil then
1256
local glue111 = Instance.new("Glue", clone.Torso)
1257
glue111.Part0 = clone.Torso
1258
glue111.Part1 = leftarm
1259
glue111.Name = "Left shoulder"
1260
local collider111 = Instance.new("Part", leftarm)
1261
collider111.Position = Vector3.new(0,9999,0)
1262
collider111.Size = Vector3.new(1.5,1,1)
1263
collider111.Shape = "Cylinder"
1264
local weld111 = Instance.new("Weld", collider111)
1265
weld111.Part0 = leftarm
1266
weld111.Part1 = collider111
1267
weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1268
collider111.TopSurface = "Smooth"
1269
collider111.BottomSurface = "Smooth"
1270
collider111.formFactor = "Symmetric"
1271
glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1272
glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1273
collider111.Transparency = 1
1274
----------------
1275
sensoring = Instance.new("Part", clone.Torso)
1276
sensoring.Size = Vector3.new(1.2,1.1,0.8)
1277
sensoring.CanCollide = false
1278
sensoring.Position = clone.Torso.Position
1279
local welder = Instance.new("Weld", sensoring)
1280
welder.Part0 = clone.Torso
1281
welder.Part1 = sensoring
1282
welder.C0 = welder.C0 * CFrame.new(0,0,1.05)
1283
sensoring.Transparency = 1
1284
-----------------
1285
sensoring1 = Instance.new("Part", clone.Torso)
1286
sensoring1.Size = Vector3.new(1.2,1.1,0.8)
1287
sensoring1.CanCollide = false
1288
sensoring1.Position = clone.Torso.Position
1289
local welder1 = Instance.new("Weld", sensoring)
1290
welder1.Part0 = clone.Torso
1291
welder1.Part1 = sensoring1
1292
welder1.C0 = welder1.C0 * CFrame.new(0,0,-1.05)
1293
sensoring1.Transparency = 1
1294
end
1295
clone.Name = game.Players.LocalPlayer.Character.Name.." (Committed suicide)"
1296
ded:Stop()
1297
vel:destroy()
1298
wait(0.5)
1299
local function touch()
1300
    if not using then
1301
        using = true
1302
        local Math = math.random(1,4)
1303
        if Math == 1 then
1304
            hit:Play()
1305
        end
1306
        if Math == 2 then
1307
            hit1:Play()
1308
        end
1309
        if Math == 3 then
1310
            hit2:Play()
1311
        end
1312
        if Math == 4 then
1313
            hit3:Play()
1314
        end
1315
        wait(0.1)
1316
        using = false
1317
    end
1318
end
1319
sensoring.Touched:connect(touch)
1320
sensoring1.Touched:connect(touch)
1321
while true do
1322
    if head ~= nil then
1323
        head.CanCollide = false
1324
    end
1325
    game:GetService("RunService").Stepped:wait()
1326
end
1327
        end
1328
 
1329
game.Players.LocalPlayer.Character.Humanoid.Died:connect(ragdoll)
1330
			local shotsound = Instance.new("Sound", gun)
1331
			shotsound.EmitterSize = 2
1332
			shotsound.SoundId = "rbxassetid://745308042"
1333
			shotsound.Volume = 10
1334
			shotsound:Play()
1335
			game.Players.LocalPlayer.Character.Humanoid.Health = 0
1336
		end
1337
	end
1338
end
1339
mouse.KeyDown:connect(kyslol)
1340
function killtatfurfag(part)
1341
			local humanoid = part.Parent:findFirstChild("Humanoid")
1342
			if humanoid and canuse then
1343
				canuse = false
1344
				print("Has humanoid")
1345
				for i,v in pairs(humanoid.Parent:GetChildren()) do
1346
					if v.ClassName == "Accessory" or v.ClassName == "Hat" then
1347
						local mesh = v.Handle.Mesh
1348
						print("Found Hat")
1349
						print(v)
1350
						print(mesh)
1351
						if mesh.MeshId == "rbxassetid://188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or mesh.MeshId == "rbxassetid://170939831" or mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or mesh.MeshId == "rbxassetid://135446047" or mesh.MeshId == "rbxassetid://335037790" or mesh.MeshId == "rbxassetid://361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or mesh.MeshId == "rbxassetid://1374148" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1352
							print("Furfaggot")
1353
							if cankillafurfag then
1354
								cankillafurfag = false
1355
								canuse = false
1356
								humanoid.WalkSpeed = 0
1357
								humanoid.JumpPower = 0
1358
								local textfagmath = math.random(1,4)
1359
								if textfagmath == 1 then
1360
									textfag.Text = "yiff in hell furfag"
1361
								end
1362
								if textfagmath == 2 then
1363
									textfag.Text = "die fox wannabe"
1364
								end
1365
								if textfagmath == 3 then
1366
									textfag.Text = "be a dog somewhere else"
1367
								end
1368
								if textfagmath == 4 then
1369
									textfag.Text = "kill yourself lol"
1370
								end
1371
								workspace.CurrentCamera.CameraSubject = humanoid.Parent.Head
1372
								local humanoidrootpart = humanoid.Parent:findFirstChild("HumanoidRootPart")
1373
								if humanoidrootpart then
1374
									humanoidrootpart:destroy()
1375
								else
1376
									humanoid.PlatformStand = true
1377
								end
1378
								if not issoneplaying then
1379
									song:Play()
1380
									issoneplaying = true
1381
								end
1382
								local furfagweld = Instance.new("Weld", humanoid.Parent.Head)
1383
								furfagweld.Part0 = game.Players.LocalPlayer.Character.Torso
1384
								furfagweld.Part1 = humanoid.Parent.Head
1385
								furfagweld.C0 = CFrame.new(-0.20883131, 1.52094078, -1.24165344, 0.999628544, 1.30674697e-19, -0.027248919, -7.10571086e-08, 1.00000024, -2.60673528e-06, 0.0272489246, 2.65240669e-06, 0.999628782)
1386
								local lefthandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
1387
								game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Remove()
1388
								local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
1389
					            lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
1390
					            lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
1391
					            lhandweld.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1392
					            lhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1393
								for i = 0,1 , 0.03 do
1394
									lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.39632034, 0.689879417, -0.597869873, -6.35552908e-07, -0.500005543, 0.86602211, 0.984808922, -0.150379077, -0.0868219659, 0.173643142, 0.852866292, 0.492410004),i)
1395
									game:GetService("RunService").RenderStepped:wait()
1396
								end
1397
								print(mesh.MeshId)
1398
								wait(1)
1399
								local righthandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
1400
								game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
1401
								local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
1402
					            rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
1403
					            rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1404
					            rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1405
					            rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1406
								for i = 0,1 , 0.03 do
1407
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.27873755, 0.423975229, 0.121429443, -0.150391072, 0.417206496, 0.896284282, -0.34430778, 0.827733159, -0.443071097, -0.926733494, -0.375231266, 0.0191633161),i)
1408
									game:GetService("RunService").RenderStepped:wait()
1409
								end
1410
								wait(0.5)
1411
								--Converted with ttyyuu12345's model to script plugin v4
1412
								function sandbox(var,func)
1413
									local env = getfenv(func)
1414
									local newenv = setmetatable({},{
1415
										__index = function(self,k)
1416
											if k=="script" then
1417
												return var
1418
											else
1419
												return env[k]
1420
											end
1421
										end,
1422
									})
1423
									setfenv(func,newenv)
1424
									return func
1425
								end
1426
								cors = {}
1427
								mas = Instance.new("Model",game:GetService("Lighting"))
1428
								local Model0 = Instance.new("Model")
1429
								local Part1 = Instance.new("Part")
1430
								local Part2 = Instance.new("Part")
1431
								local Part3 = Instance.new("Part")
1432
								local Weld4 = Instance.new("Weld")
1433
								local Weld5 = Instance.new("Weld")
1434
								local Weld6 = Instance.new("Weld")
1435
								local Part7 = Instance.new("Part")
1436
								Model0.Name = "lolrip"
1437
								Model0.Parent = mas
1438
								Part1.Name = "die1"
1439
								Part1.Parent = Model0
1440
								Part1.Rotation = Vector3.new(90, -60, 20)
1441
								Part1.Size = Vector3.new(1.31000066, 0.129999995, 0.0600000024)
1442
								Part1.CFrame = CFrame.new(80.7363205, 2.06008005, 5.45916986, 0.469849259, -0.171007127, -0.866025925, -0.813799143, 0.29619959, -0.500001609, 0.342019051, 0.939697623, 1.28149986e-06)
1443
								Part1.Position = Vector3.new(80.7363205, 2.06008005, 5.45916986)
1444
								Part1.Orientation = Vector3.new(30, -90, -70)
1445
								Part2.Name = "die111"
1446
								Part2.Parent = Model0
1447
								Part2.Rotation = Vector3.new(90, -60, 20)
1448
								Part2.Size = Vector3.new(0.220000789, 0.249999985, 0.0500000007)
1449
								Part2.CFrame = CFrame.new(81.0578461, 1.51319027, 5.57297802, 0.469852835, -0.171006486, -0.866029203, -0.81380409, 0.296205878, -0.500004292, 0.342021137, 0.939711392, -2.41157886e-06)
1450
								Part2.Position = Vector3.new(81.0578461, 1.51319027, 5.57297802)
1451
								Part2.Orientation = Vector3.new(30, -90, -70)
1452
								Part3.Name = "die11"
1453
								Part3.Parent = Model0
1454
								Part3.Rotation = Vector3.new(90, -60, 20)
1455
								Part3.Size = Vector3.new(1.31000066, 0.140000001, 0.0600000024)
1456
								Part3.CFrame = CFrame.new(80.7730865, 1.99637699, 5.25709486, 0.469850421, -0.171006933, -0.866027057, -0.813800752, 0.296201736, -0.500002503, 0.342019767, 0.939702213, 5.17442231e-08)
1457
								Part3.Position = Vector3.new(80.7730865, 1.99637699, 5.25709486)
1458
								Part3.Orientation = Vector3.new(30, -90, -70)
1459
								Weld4.Parent = Part3
1460
								Weld4.C0 = CFrame.new(-3.81469727e-06, 0.215043068, -7.62939453e-06, 1.00000215, -2.98023224e-08, -1.87552331e-07, -5.96046448e-08, 1.00000489, -1.22467213e-06, -1.97065447e-07, -1.23694826e-06, 1.00000143)
1461
								Weld4.Part0 = Part3
1462
								Weld4.Part1 = Part1
1463
								Weld5.Parent = Part3
1464
								Weld5.C0 = CFrame.new(-0.674819946, 0.105020523, -0.00501251221, 1.00000429, -2.98023224e-08, -4.05679941e-07, -8.94069672e-08, 1.00000978, -2.47373328e-06, -3.99535054e-07, -2.45477145e-06, 1.00000274)
1465
								Weld5.Part0 = Part3
1466
								Weld5.Part1 = Part7
1467
								Weld6.Parent = Part3
1468
								Weld6.C0 = CFrame.new(0.635044098, 0.105017662, -0.00501251221, 1.00000429, -2.98023224e-08, -4.05679941e-07, -8.94069672e-08, 1.00000978, -2.47373328e-06, -3.99535054e-07, -2.45477145e-06, 1.00000274)
1469
								Weld6.Part0 = Part3
1470
								Weld6.Part1 = Part2
1471
								Part7.Name = "die"
1472
								Part7.Parent = Model0
1473
								Part7.Rotation = Vector3.new(90, -60, 20)
1474
								Part7.Size = Vector3.new(0.220000789, 0.249999985, 0.0500000007)
1475
								Part7.CFrame = CFrame.new(80.4424057, 2.5791595, 5.12498093, 0.469852835, -0.171006486, -0.866029203, -0.81380409, 0.296205878, -0.500004292, 0.342021137, 0.939711392, -2.41157886e-06)
1476
								Part7.Position = Vector3.new(80.4424057, 2.5791595, 5.12498093)
1477
								Part7.Orientation = Vector3.new(30, -90, -70)
1478
								for i,v in pairs(mas:GetChildren()) do
1479
									v.Parent = game:GetService("Players").LocalPlayer.Character
1480
									pcall(function() v:MakeJoints() end)
1481
								end
1482
								mas:Destroy()
1483
								for i,v in pairs(cors) do
1484
									spawn(function()
1485
										pcall(v)
1486
									end)
1487
								end
1488
								local razorweld = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
1489
								razorweld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
1490
								razorweld.Part1 = Part1
1491
								razorweld.C0 = CFrame.new(-0.437942505, -1.83271027, -0.0659909248, -0.103788331, 0.197815806, 0.974729717, -0.992601395, -0.0827061236, -0.0889062211, 0.0630289018, -0.97674638, 0.204936787)
1492
								for i,v in pairs(mas:GetChildren()) do
1493
									v.Parent = game:GetService("Players").LocalPlayer.Character
1494
									pcall(function() v:MakeJoints() end)
1495
								end
1496
								mas:Destroy()
1497
								for i,v in pairs(cors) do
1498
									spawn(function()
1499
										pcall(v)
1500
									end)
1501
								end
1502
								for i = 0,1 , 0.03 do
1503
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.2521863, 0.696266413, 0.0165557861, -2.93719313e-06, 0.173656181, 0.984807909, 0.984808981, -0.171007469, 0.0301576983, 0.173647076, 0.969846308, -0.171017706),i)
1504
						            game:GetService("RunService").RenderStepped:wait()
1505
								end
1506
								wait(0.5)
1507
								for i = 0,1 , 0.03 do
1508
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.75894547, 1.35891843, -0.64024353, -0.619637072, 0.748064518, 0.237589911, 0.356261671, -0.00166783645, 0.934385598, 0.699377179, 0.663624287, -0.265473157),i)
1509
						            game:GetService("RunService").RenderStepped:wait()
1510
								end
1511
								wait(2)
1512
								for i = 0,1 , 0.05 do
1513
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.10069132, 1.36038756, -1.22418213, -0.619636714, 0.74806416, 0.237589821, 0.356262296, -0.00166774949, 0.934387028, 0.699378252, 0.66362536, -0.265473425),i)
1514
						            game:GetService("RunService").RenderStepped:wait()
1515
								end
1516
								knife:Play()
1517
								for i = 0,1 , 0.1 do
1518
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1519
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1520
							        bl000d.BrickColor = BrickColor.new("Maroon")
1521
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1522
							        bl000d:BreakJoints()
1523
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1524
							        humanoid.Health = humanoid.Health - 0.2
1525
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.05257821, 1.35826468, -0.379745483, -0.619636834, 0.74806428, 0.237589851, 0.356262088, -0.00166777847, 0.934386551, 0.699377894, 0.663625002, -0.265473336),i)
1526
						            game:GetService("RunService").RenderStepped:wait()
1527
								end
1528
								for i = 0,1 , 0.05 do
1529
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1530
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1531
							        bl000d.BrickColor = BrickColor.new("Maroon")
1532
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1533
							        bl000d:BreakJoints()
1534
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1535
							        humanoid.Health = humanoid.Health - 0.2
1536
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.75894547, 1.35891843, -0.64024353, -0.619637072, 0.748064518, 0.237589911, 0.356261671, -0.00166783645, 0.934385598, 0.699377179, 0.663624287, -0.265473157),i)
1537
						            game:GetService("RunService").RenderStepped:wait()
1538
								end
1539
								knife:Play()
1540
								for i = 0,1 , 0.05 do
1541
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1542
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1543
							        bl000d.BrickColor = BrickColor.new("Maroon")
1544
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1545
							        bl000d:BreakJoints()
1546
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1547
							        humanoid.Health = humanoid.Health - 0.2
1548
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.10069132, 1.36038756, -1.22418213, -0.619636714, 0.74806416, 0.237589821, 0.356262296, -0.00166774949, 0.934387028, 0.699378252, 0.66362536, -0.265473425),i)
1549
						            game:GetService("RunService").RenderStepped:wait()
1550
								end
1551
								for i = 0,1 , 0.05 do
1552
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1553
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1554
							        bl000d.BrickColor = BrickColor.new("Maroon")
1555
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1556
							        bl000d:BreakJoints()
1557
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1558
							        humanoid.Health = humanoid.Health - 0.2
1559
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.75894547, 1.35891843, -0.64024353, -0.619637072, 0.748064518, 0.237589911, 0.356261671, -0.00166783645, 0.934385598, 0.699377179, 0.663624287, -0.265473157),i)
1560
						            game:GetService("RunService").RenderStepped:wait()
1561
								end
1562
								knife:Play()
1563
								for i = 0,1 , 0.05 do
1564
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1565
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1566
							        bl000d.BrickColor = BrickColor.new("Maroon")
1567
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1568
							        bl000d:BreakJoints()
1569
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1570
							        humanoid.Health = humanoid.Health - 0.2
1571
						            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.10069132, 1.36038756, -1.22418213, -0.619636714, 0.74806416, 0.237589821, 0.356262296, -0.00166774949, 0.934387028, 0.699378252, 0.66362536, -0.265473425),i)
1572
						            game:GetService("RunService").RenderStepped:wait()
1573
								end
1574
								wait(1)
1575
								local legcl = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
1576
					            game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
1577
					            local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
1578
					            llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
1579
					            llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
1580
								for i = 0,1 , 0.1 do
1581
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1582
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1583
							        bl000d.BrickColor = BrickColor.new("Maroon")
1584
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1585
							        bl000d:BreakJoints()
1586
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1587
							        humanoid.Health = humanoid.Health - 0.2
1588
						            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.499996662, -1.1485647, 0.598503113, 1.75394255e-26, -1.47170199e-26, 0.99999994, -0.766049445, 0.642781913, 0, -0.642781734, -0.766049743, 0),i)
1589
						            game:GetService("RunService").RenderStepped:wait()
1590
								end
1591
								dog:Play()
1592
								kick:Play()
1593
								furfagweld:destroy()
1594
								local kysniba = Instance.new("BodyVelocity", humanoid.Parent.Torso)
1595
								kysniba.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
1596
								kysniba.Velocity = game.Players.LocalPlayer.Character["Left Leg"].CFrame.rightVector * 35 + Vector3.new(0,15,0)
1597
								for i = 0,1 , 0.1 do
1598
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1599
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1600
							        bl000d.BrickColor = BrickColor.new("Maroon")
1601
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1602
							        bl000d:BreakJoints()
1603
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1604
							        humanoid.Health = humanoid.Health - 0.2
1605
						            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.499996662, -1.02914703, -0.742607117, -5.87247582e-25, -2.47702398e-25, 0.99999994, 0.984806955, 0.173654884, 5.98444181e-25, -0.173654839, 0.984806955, 1.41960611e-25),i)
1606
						            game:GetService("RunService").RenderStepped:wait()
1607
								end
1608
								lshclone = humanoid.Parent.Torso["Left Shoulder"]:Clone()
1609
								rshclone = humanoid.Parent.Torso["Right Shoulder"]:Clone()
1610
								lhclone = humanoid.Parent.Torso["Left Hip"]:Clone()
1611
								rhclone = humanoid.Parent.Torso["Right Hip"]:Clone()
1612
								local leftarm = humanoid.Parent["Left Arm"]
1613
								local rightrm = humanoid.Parent["Right Arm"]
1614
								local leftleg = humanoid.Parent["Left Leg"]
1615
								local rightleg = humanoid.Parent["Right Leg"]
1616
								humanoid.Parent.Torso["Left Hip"]:destroy()
1617
								local head = humanoid.Parent.Head
1618
								glue = Instance.new("Glue", humanoid.Parent.Torso)
1619
								glue.Part0 = humanoid.Parent.Torso
1620
								glue.Part1 = leftleg
1621
								glue.Name = "Left leg"
1622
								collider = Instance.new("Part", leftleg)
1623
								collider.Position = Vector3.new(0,999,0)
1624
								collider.Size = Vector3.new(1.5, 1, 1)
1625
								collider.Shape = "Cylinder"
1626
								local weld = Instance.new("Weld", collider)
1627
								weld.Part0 = leftleg
1628
								weld.Part1 = collider
1629
								weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1630
								collider.TopSurface = "Smooth"
1631
								collider.BottomSurface = "Smooth"
1632
								collider.formFactor = "Symmetric"
1633
								glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
1634
								glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
1635
								collider.Transparency = 1
1636
								------------
1637
								humanoid.Parent.Torso["Right Hip"]:destroy()
1638
								glue1 = Instance.new("Glue", humanoid.Parent.Torso)
1639
								glue1.Part0 = humanoid.Parent.Torso
1640
								glue1.Part1 = rightleg
1641
								glue1.Name = "Right leg"
1642
								collider1 = Instance.new("Part", rightleg)
1643
								collider1.Position = Vector3.new(0,9999,0)
1644
								collider1.Size = Vector3.new(1.5, 1, 1)
1645
								collider1.Shape = "Cylinder"
1646
								local weld1 = Instance.new("Weld", collider1)
1647
								weld1.Part0 = rightleg
1648
								weld1.Part1 = collider1
1649
								weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1650
								collider1.TopSurface = "Smooth"
1651
								collider1.BottomSurface = "Smooth"
1652
								collider1.formFactor = "Symmetric"
1653
								glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
1654
								glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
1655
								collider1.Transparency = 1
1656
								------------
1657
								humanoid.Parent.Torso["Right Shoulder"]:destroy()
1658
								glue11 = Instance.new("Glue", humanoid.Parent.Torso)
1659
								glue11.Part0 = humanoid.Parent.Torso
1660
								glue11.Part1 = rightrm
1661
								glue11.Name = "Right shoulder"
1662
								collider11 = Instance.new("Part", rightrm)
1663
								collider11.Position = Vector3.new(0,9999,0)
1664
								collider11.Size = Vector3.new(1.8,1,1)
1665
								collider11.Shape = "Cylinder"
1666
								local weld11 = Instance.new("Weld", collider11)
1667
								weld11.Part0 = rightrm
1668
								weld11.Part1 = collider11
1669
								weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1670
								collider11.TopSurface = "Smooth"
1671
								collider11.BottomSurface = "Smooth"
1672
								collider11.formFactor = "Symmetric"
1673
								glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1674
								glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1675
								collider11.Transparency = 1
1676
								------------
1677
								humanoid.Parent.Torso["Left Shoulder"]:destroy()
1678
								glue111 = Instance.new("Glue", humanoid.Parent.Torso)
1679
								glue111.Part0 = humanoid.Parent.Torso
1680
								glue111.Part1 = leftarm
1681
								glue111.Name = "Left shoulder"
1682
								collider111 = Instance.new("Part", leftarm)
1683
								collider111.Position = Vector3.new(0,9999,0)
1684
								collider111.Size = Vector3.new(1.5, 1, 1)
1685
								collider111.Shape = "Cylinder"
1686
								local weld111 = Instance.new("Weld", collider111)
1687
								weld111.Part0 = leftarm
1688
								weld111.Part1 = collider111
1689
								weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1690
								collider111.TopSurface = "Smooth"
1691
								collider111.BottomSurface = "Smooth"
1692
								collider111.formFactor = "Symmetric"
1693
								glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1694
								glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1695
								collider111.Transparency = 1
1696
								kysniba:destroy()
1697
								wait(2)
1698
								workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
1699
								for i = 0,1 , 0.02 do
1700
									lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),i)
1701
									rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),i)
1702
									game:GetService("RunService").RenderStepped:wait()
1703
								end
1704
								llegweld:destroy()
1705
								legcl.Parent = game.Players.LocalPlayer.Character.Torso
1706
								lhandweld:destroy()
1707
								lefthandclone.Parent = game.Players.LocalPlayer.Character.Torso
1708
								rhandweld:destroy()
1709
								righthandclone.Parent = game.Players.LocalPlayer.Character.Torso
1710
								game:GetService("RunService").RenderStepped:wait()
1711
								Model0:destroy()
1712
								textfag.Text = game.Players.LocalPlayer.Character.Name.." the Anti-Furry School Shooter"
1713
								cankillafurfag = false
1714
								canuse = true
1715
								while humanoid.Health > 0.0001 do
1716
									local bl000d = Instance.new("Part", humanoid.Parent.Head)
1717
							        bl000d.Size = Vector3.new(0.2,0.2,0.2)
1718
							        bl000d.BrickColor = BrickColor.new("Maroon")
1719
							        bl000d.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(0,-0.5,-1)
1720
							        bl000d:BreakJoints()
1721
							        bl000d.Velocity = humanoid.Parent.Head.CFrame.lookVector * 20
1722
							        humanoid.Health = humanoid.Health - 2
1723
									wait()
1724
								end
1725
							end
1726
						end
1727
					end
1728
				end
1729
				canuse = true
1730
			end
1731
		end
1732
		game.Players.LocalPlayer.Character.Torso.Touched:connect(killtatfurfag)
1733
mouse.KeyDown:connect(woosh)
1734
function cancerify()
1735
	local hum = mouse.Target.Parent:findFirstChild("Humanoid")
1736
	if hum then
1737
		if hum.Parent.Name == "Rufus14" then
1738
			
1739
		else
1740
			--Converted with ttyyuu12345's model to script plugin v4
1741
			function sandbox(var,func)
1742
				local env = getfenv(func)
1743
				local newenv = setmetatable({},{
1744
					__index = function(self,k)
1745
						if k=="script" then
1746
							return var
1747
						else
1748
							return env[k]
1749
						end
1750
					end,
1751
				})
1752
				setfenv(func,newenv)
1753
				return func
1754
			end
1755
			cors = {}
1756
			mas = Instance.new("Model",game:GetService("Lighting"))
1757
			Accessory0 = Instance.new("Accessory")
1758
			Part1 = Instance.new("Part")
1759
			SpecialMesh2 = Instance.new("SpecialMesh")
1760
			Accessory0.Name = "Cancer"
1761
			Accessory0.Parent = mas
1762
			Part1.Name = "Handle"
1763
			Part1.Parent = Accessory0
1764
			Part1.Rotation = Vector3.new(0, 0, 0.0199999996)
1765
			Part1.FormFactor = Enum.FormFactor.Custom
1766
			Part1.Size = Vector3.new(1.25000024, 1.12999988, 1.1400001)
1767
			Part1.CFrame = CFrame.new(113.104767, 31.6558571, -259.307831, 1, -0.000407999993, 0, 0.000407999993, 1, 0, 0, 0, 1)
1768
			Part1.BottomSurface = Enum.SurfaceType.Smooth
1769
			Part1.TopSurface = Enum.SurfaceType.Smooth
1770
			Part1.Position = Vector3.new(113.104767, 31.6558571, -259.307831)
1771
			Part1.Orientation = Vector3.new(0, 0, 0.0199999996)
1772
			SpecialMesh2.Parent = Part1
1773
			SpecialMesh2.MeshId = "rbxassetid://361948302"
1774
			SpecialMesh2.Scale = Vector3.new(0.5, 0.5, 0.5)
1775
			SpecialMesh2.TextureId = "http://www.roblox.com/asset/?id=361948503 "
1776
			SpecialMesh2.MeshType = Enum.MeshType.FileMesh
1777
			SpecialMesh2.Scale = Vector3.new(0.5, 0.5, 0.5)
1778
			for i,v in pairs(mas:GetChildren()) do
1779
				v.Parent = hum.Parent
1780
				pcall(function() v:MakeJoints() end)
1781
			end
1782
			mas:Destroy()
1783
			for i,v in pairs(cors) do
1784
				spawn(function()
1785
					pcall(v)
1786
				end)
1787
			end
1788
		end
1789
	end
1790
end
1791
mouse.Button1Down:connect(cancerify)