View difference between Paste ID: RxaknH88 and 7jJx4jUe
SHOW: | | - or go back to the newest paste.
1
--https://github.com/Mokiros/roblox-FE-compatibility
2-
local Player,Mouse,mouse,UserInputService,ContextActionService = owner
2+
3
local Player,game,owner = owner,game
4-
do print("FE Compatibility code by Mokiros")local a=RealPlayer;script.Parent=a.Character;local b=Instance.new("RemoteEvent")b.Name="UserInput_Event"local function c()local d={_fakeEvent=true,Functions={},Connect=function(self,e)table.insert(self.Functions,e)end}d.connect=d.Connect;return d end;local f={Target=nil,Hit=CFrame.new(),KeyUp=c(),KeyDown=c(),Button1Up=c(),Button1Down=c()}local g={InputBegan=c(),InputEnded=c()}local CAS={Actions={},BindAction=function(self,h,i,j,...)CAS.Actions[h]=i and{Name=h,Function=i,Keys={...}}or nil end}CAS.UnbindAction=CAS.BindAction;local function k(self,l,...)local d=f[l]if d and d._fakeEvent then for m,e in pairs(d.Functions)do e(...)end end end;f.TrigEvent=k;g.TrigEvent=k;b.OnServerEvent:Connect(function(n,o)if n~=a then return end;f.Target=o.Target;f.Hit=o.Hit;if not o.isMouse then local p=o.UserInputState==Enum.UserInputState.Begin;if o.UserInputType==Enum.UserInputType.MouseButton1 then return f:TrigEvent(p and"Button1Down"or"Button1Up")end;for m,d in pairs(CAS.Actions)do for m,q in pairs(d.Keys)do if q==o.KeyCode then d.Function(d.Name,o.UserInputState,o)end end end;f:TrigEvent(p and"KeyDown"or"KeyUp",o.KeyCode.Name:lower())g:TrigEvent(p and"InputBegan"or"InputEnded",o,false)end end)b.Parent=NLS([==[local a=game:GetService("Players").LocalPlayer;local b=script:WaitForChild("UserInput_Event")local c=a:GetMouse()local d=game:GetService("UserInputService")local e=function(f,g)if g then return end;b:FireServer({KeyCode=f.KeyCode,UserInputType=f.UserInputType,UserInputState=f.UserInputState,Hit=c.Hit,Target=c.Target})end;d.InputBegan:Connect(e)d.InputEnded:Connect(e)local h,i;while wait(1/30)do if h~=c.Hit or i~=c.Target then h,i=c.Hit,c.Target;b:FireServer({isMouse=true,Target=i,Hit=h})end end]==],Player.Character)local r=game;local s={__index=function(self,q)local t=rawget(self,"_RealService")if t then return t[q]end end,__newindex=function(self,q,u)local t=rawget(self,"_RealService")if t then t[q]=u end end,__call=function(self,...)local t=rawget(self,"_RealService")if t then return t(...)end end}local function v(d,w)d._RealService=typeof(w)=="string"and r:GetService(w)or w;return setmetatable(d,s)end;local x={GetService=function(self,t)return self[t]end,Players=v({LocalPlayer=v({GetMouse=function(self)return f end},Player)},"Players"),UserInputService=v(g,"UserInputService"),ContextActionService=v(CAS,"ContextActionService")}rawset(x.Players,"localPlayer",x.Players.LocalPlayer)x.service=x.GetService;x.RunService=v({RenderStepped=r:GetService("RunService").Heartbeat,BindToRenderStep=function(self,h,m,i)self._btrs[h]=self.Heartbeat:Connect(i)end,UnbindFromRenderStep=function(self,h)self._btrs[h]:Disconnect()end},"RunService")setmetatable(x,{__index=function(self,t)return r:GetService(t)or typeof(r[t])=="function"and function(m,...)return r[t](r,...)end or r[t]end,__newindex=s.__newindex,__call=s.__call})game,owner=x,x.Players.LocalPlayer end
4+
5
do
6
	print("FE Compatibility code V2 by Mokiros")
7
	local RealPlayer = RealPlayer
8
	script.Parent = RealPlayer.Character
9
10
	--Fake event to make stuff like Mouse.KeyDown work
11
	local Disconnect_Function = function(this)
12
		this[1].Functions[this[2]] = nil
13
	end
14
	local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
15
	local FakeEvent_Metatable = {__index={
16
		Connect = function(this,f)
17
			local i = tostring(math.random(0,10000))
18
			while this.Functions[i] do
19
				i = tostring(math.random(0,10000))
20
			end
21
			this.Functions[i] = f
22
			return setmetatable({this,i},Disconnect_Metatable)
23
		end
24
	}}
25
	FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
26
	local function fakeEvent()
27
		return setmetatable({Functions={}},FakeEvent_Metatable)
28
	end
29
30
	--Creating fake input objects with fake variables
31
    local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
32
    FakeMouse.keyUp = FakeMouse.KeyUp
33
    FakeMouse.keyDown = FakeMouse.KeyDown
34
	local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
35
	local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
36
		CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
37
	end}
38
	--Merged 2 functions into one by checking amount of arguments
39
	CAS.UnbindAction = CAS.BindAction
40
41
	--This function will trigger the events that have been :Connect()'ed
42
	local function TriggerEvent(self,ev,...)
43
		for _,f in pairs(self[ev].Functions) do
44
			f(...)
45
		end
46
	end
47
	FakeMouse.TriggerEvent = TriggerEvent
48
	UIS.TriggerEvent = TriggerEvent
49
50
	--Client communication
51
	local Event = Instance.new("RemoteEvent")
52
	Event.Name = "UserInput_Event"
53
	Event.OnServerEvent:Connect(function(plr,io)
54
	    if plr~=RealPlayer then return end
55
		FakeMouse.Target = io.Target
56
		FakeMouse.Hit = io.Hit
57
		if not io.isMouse then
58
			local b = io.UserInputState == Enum.UserInputState.Begin
59
			if io.UserInputType == Enum.UserInputType.MouseButton1 then
60
				return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
61
			end
62
			if io.UserInputType == Enum.UserInputType.MouseButton2 then
63
				return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
64
			end
65
			for _,t in pairs(CAS.Actions) do
66
				for _,k in pairs(t.Keys) do
67
					if k==io.KeyCode then
68
						t.Function(t.Name,io.UserInputState,io)
69
					end
70
				end
71
			end
72
			FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
73
			UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
74
	    end
75
	end)
76
	Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
77
	local Mouse = owner:GetMouse()
78
	local UIS = game:GetService("UserInputService")
79
	local input = function(io,RobloxHandled)
80
		if RobloxHandled then return end
81
		--Since InputObject is a client-side instance, we create and pass table instead
82
		Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
83
	end
84
	UIS.InputBegan:Connect(input)
85
	UIS.InputEnded:Connect(input)
86
87
	local h,t
88
	--Give the server mouse data every second frame, but only if the values changed
89
	--If player is not moving their mouse, client won't fire events
90
	local HB = game:GetService("RunService").Heartbeat
91
	while true do
92
		if h~=Mouse.Hit or t~=Mouse.Target then
93
			h,t=Mouse.Hit,Mouse.Target
94
			Event:FireServer({isMouse=true,Target=t,Hit=h})
95
		end
96
		--Wait 2 frames
97
		for i=1,2 do
98
			HB:Wait()
99
		end
100
	end]==],script)
101
102
	----Sandboxed game object that allows the usage of client-side methods and services
103
	--Real game object
104
	local RealGame = game
105
106
	--Metatable for fake service
107
	local FakeService_Metatable = {
108
		__index = function(self,k)
109
			local s = rawget(self,"_RealService")
110
			if s then
111
				return typeof(s[k])=="function"
112
				and function(_,...)return s[k](s,...)end or s[k]
113
			end
114
		end,
115
		__newindex = function(self,k,v)
116
			local s = rawget(self,"_RealService")
117
			if s then s[k]=v end
118
		end
119
	}
120
	local function FakeService(t,RealService)
121
		t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
122
		return setmetatable(t,FakeService_Metatable)
123
	end
124
125
	--Fake game object
126
	local FakeGame = {
127
		GetService = function(self,s)
128
			return rawget(self,s) or RealGame:GetService(s)
129
		end,
130
		Players = FakeService({
131
			LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
132
		},"Players"),
133
		UserInputService = FakeService(UIS,"UserInputService"),
134
		ContextActionService = FakeService(CAS,"ContextActionService"),
135
		RunService = FakeService({
136
			_btrs = {},
137
			RenderStepped = RealGame:GetService("RunService").Heartbeat,
138
			BindToRenderStep = function(self,name,_,fun)
139
				self._btrs[name] = self.Heartbeat:Connect(fun)
140
			end,
141
			UnbindFromRenderStep = function(self,name)
142
				self._btrs[name]:Disconnect()
143
			end,
144
		},"RunService")
145
	}
146
	rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
147
	FakeGame.service = FakeGame.GetService
148
	FakeService(FakeGame,game)
149
	--Changing owner to fake player object to support owner:GetMouse()
150
	game,owner = FakeGame,FakeGame.Players.LocalPlayer
151
end
152
153
mouse = game.Players.LocalPlayer:GetMouse()
154
local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
155
game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
156
local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
157
rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
158
rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
159
rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
160
local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
161
game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Remove()
162
local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
163
lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
164
lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
165
lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
166
local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
167
game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
168
local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
169
llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
170
llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
171
llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
172
local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
173
game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
174
local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
175
rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
176
rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
177
rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
178
local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
179
game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
180
local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
181
humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
182
humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
183
local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
184
local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
185
headweld.Part0 = game.Players.LocalPlayer.Character.Torso
186
headweld.Part1 = game.Players.LocalPlayer.Character.Head
187
headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
188
game.Players.LocalPlayer.Character.Torso.Neck:Remove()
189
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
190
game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
191
game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
192
Sound0 = Instance.new("Sound")
193
Sound0.Volume = 5
194
Sound0.Parent = game.Players.LocalPlayer.Character.Head
195
Sound0.SoundId = "rbxassetid://1103329236"
196
Sound0.Looped = true
197
Sound0:Play()
198
canwalk = true
199
howmuch = 0
200
hittd = false
201
function change(key)
202
    if key == "w" or key == "a" or key == "s" or key == "d" then
203
        howmuch = howmuch + 1
204
    end
205
end
206
function otherchange(key)
207
    if key == "w" or key == "a" or key == "s" or key == "d" then
208
        howmuch = howmuch - 1
209
    end
210
end
211
mouse.KeyDown:connect(change)
212
mouse.KeyUp:connect(otherchange)
213
--By Rufus14
214
mouse = game.Players.LocalPlayer:GetMouse()
215
using = false
216
hittd = false
217
--Converted with ttyyuu12345's model to script plugin v4
218
local txtfag = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
219
txtfag.Adornee = suckadick
220
txtfag.Name = "kys nigga"
221
txtfag.Size = UDim2.new(2, 0, 1.2, 0)
222
txtfag.StudsOffset = Vector3.new(-5, 3, 0)
223
local textfag = Instance.new("TextLabel", txtfag)
224
textfag.Size = UDim2.new(6, 0, 1, 0)
225
textfag.FontSize = "Size8"
226
textfag.TextScaled = true
227
textfag.TextTransparency = 0
228
textfag.BackgroundTransparency = 1
229
textfag.TextTransparency = 0
230
textfag.TextStrokeTransparency = 0
231
textfag.Font = "Cartoon"
232
textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
233
v = Instance.new("Part")
234
v.Name = "ColorBrick"
235
v.Parent = part
236
v.FormFactor = "Symmetric"
237
v.Anchored = true
238
v.CanCollide = false
239
v.BottomSurface = "Smooth"
240
v.TopSurface = "Smooth"
241
v.Size = Vector3.new(10, 5, 3)
242
v.Transparency = 0.7
243
v.BrickColor = game.Players.LocalPlayer.Character.Torso.BrickColor
244
v.Transparency = 1
245
textfag.TextColor3 = v.BrickColor.Color
246
textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
247
v.Shape = "Block"
248
textfag.Text = "Script By Rufus14"
249
wait(2)
250
textfag.Text = "lol"
251
wait(0.3)
252
textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
253
function sandbox(var,func)
254
	local env = getfenv(func)
255
	local newenv = setmetatable({},{
256
		__index = function(self,k)
257
			if k=="script" then
258
				return var
259
			else
260
				return env[k]
261
			end
262
		end,
263
	})
264
	setfenv(func,newenv)
265
	return func
266
end
267
cors = {}
268
mas = Instance.new("Model",game:GetService("Lighting"))
269
Model0 = Instance.new("Model")
270
Part1 = Instance.new("Part")
271
Weld2 = Instance.new("Weld")
272
Part3 = Instance.new("Part")
273
Decal4 = Instance.new("Decal")
274
Decal5 = Instance.new("Decal")
275
Model0.Name = "Flagloldiefurshits"
276
Model0.Parent = mas
277
Part1.Name = "Stick"
278
Part1.Parent = Model0
279
Part1.Material = Enum.Material.Wood
280
Part1.BrickColor = BrickColor.new("Dark orange")
281
Part1.Rotation = Vector3.new(0, 0, 126)
282
Part1.Shape = Enum.PartType.Cylinder
283
Part1.Size = Vector3.new(5.71999931, 0.319999993, 0.839999914)
284
Part1.CFrame = CFrame.new(-11.7340431, 3.40531874, -51.7842827, -0.58777535, -0.809025586, 0, 0.809025586, -0.58777535, 0, 0, 0, 1)
285
Part1.BottomSurface = Enum.SurfaceType.Smooth
286
Part1.TopSurface = Enum.SurfaceType.Smooth
287
Part1.Color = Color3.new(0.627451, 0.372549, 0.207843)
288
Part1.Position = Vector3.new(-11.7340431, 3.40531874, -51.7842827)
289
Part1.Orientation = Vector3.new(0, 0, 126)
290
Part1.Color = Color3.new(0.627451, 0.372549, 0.207843)
291
Weld2.Parent = Part1
292
Weld2.C0 = CFrame.new(1.73310661, 1.69616222, 0.00998687744, -2.56299973e-06, 1.00000119, 0, -1.00000119, -2.56299973e-06, 0, 0, 0, 1)
293
Weld2.Part0 = Part1
294
Weld2.Part1 = Part3
295
Part3.Name = "Flag"
296
Part3.Parent = Model0
297
Part3.BrickColor = BrickColor.new("Really black")
298
Part3.Rotation = Vector3.new(0, 0, 36)
299
Part3.Size = Vector3.new(3.32999945, 2.10000038, 0.0700000003)
300
Part3.CFrame = CFrame.new(-14.124959, 3.81048417, -51.7742958, 0.809026122, -0.587772548, 0, 0.587772548, 0.809026122, 0, 0, 0, 1)
301
Part3.BottomSurface = Enum.SurfaceType.Smooth
302
Part3.Color = Color3.new(0, 0, 0)
303
Part3.Position = Vector3.new(-14.124959, 3.81048417, -51.7742958)
304
Part3.Orientation = Vector3.new(0, 0, 36)
305
Part3.Color = Color3.new(0, 0, 0)
306
Decal4.Parent = Part3
307
Decal4.Texture = "rbxassetid://1150731665"
308
Decal5.Name = "Decal1"
309
Decal5.Parent = Part3
310
Decal5.Texture = "rbxassetid://1150731665"
311
Decal5.Face = Enum.NormalId.Back
312
for i,v in pairs(mas:GetChildren()) do
313
	v.Parent = game:GetService("Players").LocalPlayer.Character
314
	pcall(function() v:MakeJoints() end)
315
end
316
mas:Destroy()
317
for i,v in pairs(cors) do
318
	spawn(function()
319
		pcall(v)
320
	end)
321
end
322
weld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
323
weld.Part0 = game.Players.LocalPlayer.Character.Torso
324
weld.Part1 = Part1
325
weld.C0 = CFrame.new(-0.244045258, 0.405305624, 0.555713654, -0.58777535, -0.809025586, -5.23747954e-22, 0.809025586, -0.58777535, 3.13253081e-22, -5.61275872e-22, -2.39603033e-22, 1)
326
local punch = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
327
punch.Volume = 3
328
punch.SoundId = "rbxassetid://131237241"
329
punch.TimePosition = 0
330
local FILTHYPRANK = Instance.new("Sound", game.Players.LocalPlayer.Character["Head"])
331
FILTHYPRANK.Volume = 10
332
FILTHYPRANK.SoundId = "rbxassetid://676845644"
333
FILTHYPRANK.TimePosition = 3.6
334
local thunder = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
335
thunder.Volume = 3
336
thunder.SoundId = "rbxassetid://130818250"
337
thunder.TimePosition = 0.4
338
local meme = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
339
meme.Volume = 3
340
meme.SoundId = "rbxassetid://138677306"
341
local gore = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
342
gore.Volume = 4
343
gore.SoundId = "rbxassetid://429400881"
344
gore.TimePosition = 0
345
canbefps = false
346
function switchfps(key)
347
	key = key:lower()
348
	if key == "z" then
349
		if canbefps then
350
			canbefps = false
351
		else
352
			canbefps = true
353
		end
354
	end
355
end
356
mouse.KeyDown:connect(switchfps)
357
function fps()
358
	if canbefps then
359
		workspace.CurrentCamera.CFrame = game.Players.LocalPlayer.Character.Head.CFrame * CFrame.new(0,0,-0.9)
360
	end
361
end
362
game:GetService("RunService").RenderStepped:connect(fps)
363
function tentaclekick(key)
364
	if key == "f" and not using then
365
		using = true
366
		canwalk = false
367
		for i = 0,0.7 , 0.05 do
368
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.97511852, -0.684444427, 1, 7.09343726e-27, -1.96394811e-26, -1.65597681e-26, 0.829041839, -0.55919075, 1.19149551e-26, 0.55919075, 0.829041839),i)
369
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.69545364, 1.02498245, 1, 8.33037116e-27, -8.30512761e-27, 1.84277907e-27, 0.587786973, 0.809019029, 1.17634938e-26, -0.809019029, 0.587786973),i)
370
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0.150976658, -0.603237152, 1, -3.70407732e-22, -4.55732897e-22, -2.65674116e-22, 0.406738937, -0.913547099, 5.23749266e-22, 0.913547099, 0.406738907),i)
371
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.150976658, -0.603237152, 1, -3.70407732e-22, -4.55732897e-22, -2.65674116e-22, 0.406738937, -0.913547099, 5.23749266e-22, 0.913547099, 0.406738907),i)
372
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 1.80491375e-26, -5.65455497e-27, -1.84277907e-26, 0.866028428, -0.499996245, -4.08945493e-27, 0.499996245, 0.866028428):inverse(),i)
373
			game:GetService("RunService").RenderStepped:wait()
374
		end
375
		FILTHYPRANK.TimePosition = 3.8
376
		FILTHYPRANK:Play()
377
		wait(0.6)
378
		local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Leg"])
379
		sensoryee.Size = Vector3.new(1,1,1)
380
		sensoryee.CanCollide = false
381
		sensoryee.Transparency = 0
382
		sensoryee:BreakJoints()
383
		local weldsensor = Instance.new("Weld", sensoryee)
384
		weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
385
		weldsensor.Part1 = sensoryee
386
		weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
387
		local function tentacleshot(part)
388
			sensoryee:destroy()
389
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
390
			if humanoid then
391
				local canscan = true
392
				for i,v in pairs(humanoid.Parent:GetChildren()) do
393
					if v.ClassName == "Hat" or v.ClassName == "Accessory" then
394
						if v:findFirstChild("Handle") then
395
							if v.Handle:findFirstChild("Mesh") then
396
								if canscan and v.Handle.Mesh.MeshId == "rbxassetid://188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or v.Handle.Mesh.MeshId == "rbxassetid://170939831" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or v.Handle.Mesh.MeshId == "rbxassetid://135446047" or v.Handle.Mesh.MeshId == "rbxassetid://335037790" or v.Handle.Mesh.MeshId == "rbxassetid://361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or v.Handle.Mesh.MeshId == "rbxassetid://1374148" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Handle.Mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
397
									canscan = false
398
									hittd = true
399
									local furfaggrowl = Instance.new("Sound", humanoid.Parent.Head)
400
									furfaggrowl.SoundId = "rbxassetid://534269232"
401
									furfaggrowl.Volume = 7
402
									furfaggrowl:Play()
403
									punch:Play()
404
									local rhandclone = humanoid.Parent.Torso["Right Shoulder"]:Clone()
405
									local rhandweld = Instance.new("Weld", humanoid.Parent.Torso)
406
									rhandweld.Part0 = humanoid.Parent.Torso
407
									rhandweld.Part1 = humanoid.Parent["Right Arm"]
408
									rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
409
									local lhandweld = Instance.new("Weld", humanoid.Parent.Torso)
410
									lhandweld.Part0 = humanoid.Parent.Torso
411
									lhandweld.Part1 = humanoid.Parent["Left Arm"]
412
									lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
413
									local llegclone = humanoid.Parent.Torso["Left Hip"]:Clone()
414
									local llegweld = Instance.new("Weld", humanoid.Parent.Torso)
415
									llegweld.Part0 = humanoid.Parent.Torso
416
									llegweld.Part1 = humanoid.Parent["Left Leg"]
417
									llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
418
									local rlegclone = humanoid.Parent.Torso["Right Hip"]:Clone()
419
									local rlegweld = Instance.new("Weld", humanoid.Parent.Torso)
420
									rlegweld.Part0 = humanoid.Parent.Torso
421
									rlegweld.Part1 = humanoid.Parent["Right Leg"]
422
									rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
423
									local rootjointclone = humanoid.Parent.HumanoidRootPart.RootJoint:Clone()
424
									local humanoidrootpart = Instance.new("Weld", humanoid.Parent.Torso)
425
									humanoidrootpart.Part0 = humanoid.Parent.HumanoidRootPart
426
									humanoidrootpart.Part1 = humanoid.Parent.Torso
427
									local heed = humanoid.Parent.Torso["Neck"]:Clone()
428
									local headweld = Instance.new("Weld", humanoid.Parent.Torso)
429
									headweld.Part0 = humanoid.Parent.Torso
430
									headweld.Part1 = humanoid.Parent.Head
431
									headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
432
									for i = 0,0.7 , 0.07 do
433
										headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.44868422, -0.453197479, 1, -1.21169035e-27, -1.77209714e-26, 9.14779977e-27, 0.898803353, 0.438370585, 1.58529488e-26, -0.438370407, 0.898803115),i)
434
										llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.74549341, -0.405010223, 1, 9.08231085e-23, -5.80211714e-22, -2.65675327e-22, 0.951063275, -0.309020281, 5.23751791e-22, 0.309020311, 0.951063037),i)
435
										rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -2.04146266, 0.317977905, 1, 2.83790199e-22, -5.14157122e-22, -2.65675327e-22, 0.999398291, 0.0348992832, 5.23751791e-22, -0.0348991863, 0.999398053),i)
436
										lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-0.610451698, -0.249120951, -0.451892853, 0.743151546, -0.374165177, -0.554731011, 2.00528552e-06, 0.82904911, -0.559189737, 0.669127941, 0.415561259, 0.616110206),i)
437
										rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(0.849339485, -0.124854803, -0.655277252, 0.559177101, 0.337202102, 0.757374227, 0.0866425484, 0.884781837, -0.457896292, -0.824514329, 0.321665913, 0.465533555),i)
438
										humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -1.90734863e-06, 0, 1, 3.5038046e-26, -5.8766982e-26, -1.03372333e-26, 0.927190065, 0.374597758, 6.76022241e-26, -0.374597758, 0.927190006),i)
439
										game:GetService("RunService").RenderStepped:wait()
440
									end
441
									wait(6)
442
									humanoid.Parent:BreakJoints()
443
								end
444
							end
445
						end
446
					end
447
				end
448
			end
449
		end
450
		sensoryee.Touched:connect(tentacleshot)
451
		for i = 0,0.7 , 0.07 do
452
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.84595358, 0.746810913, 1, -6.61380983e-27, 1.04154883e-25, -4.31315925e-26, 0.882951677, 0.469469398, -9.49662312e-26, -0.469469309, 0.882951558),i)
453
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.43540072, -1.26526642, 1, 2.01948392e-28, -3.07592644e-26, -2.91971503e-26, 0.309028178, -0.951055586, 9.39060022e-27, 0.951055467, 0.309028089),i)
454
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0.15097785, 0.536071777, 1, 5.85133651e-22, 5.01299648e-23, -2.65674166e-22, 0.374605715, 0.927186906, 5.23749266e-22, -0.927186787, 0.374605745),i)
455
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.15097785, 0.536071777, 1, 5.85133651e-22, 5.01299648e-23, -2.65674166e-22, 0.374605715, 0.927186906, 5.23749266e-22, -0.927186787, 0.374605745),i)
456
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -1.90734863e-06, 0, 1, 3.5038046e-26, -5.8766982e-26, -1.03372333e-26, 0.927190065, 0.374597758, 6.76022241e-26, -0.374597758, 0.927190006):inverse(),i)
457
			game:GetService("RunService").RenderStepped:wait()
458
		end
459
		wait(0.2)
460
		sensoryee:destroy()
461
		FILTHYPRANK:Stop()
462
		canwalk = true
463
		using = false
464
	end
465
end
466
mouse.KeyDown:connect(tentaclekick)
467
function attacc(key)
468
	key = key:lower()
469
	if key == "r" and not using then
470
		using = true
471
		canwalk = false
472
		for i = 0,1 , 0.02 do
473
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
474
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
475
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.72260725, 0.385421276, 0, 0.865490794, 0.500013113, 0.0302087422, 0.499708682, -0.866017878, 0.0174446627, 0.0348838717, -2.62477647e-06, -0.999391317),i)
476
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.34390306, 0.174765587, -0.502760172, 0.953806698, 0.298583031, 0.0331806801, -0.0622573979, 0.304501295, -0.950475156, -0.293899328, 0.904503822, 0.309024394),i)
477
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
478
			headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
479
			game:GetService("RunService").RenderStepped:wait()
480
		end
481
		canwalk = false
482
		armcanattack = true
483
		for i = 0,1 , 0.1 do
484
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
485
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
486
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
487
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
488
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
489
			headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
490
			game:GetService("RunService").RenderStepped:wait()
491
		end
492
		local function touched(part)
493
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
494
			if humanoid and armcanattack then
495
				canwalk = false
496
				hittd = true
497
				punch:Play()
498
				armcanattack = false
499
				humanoid.WalkSpeed = 0
500
				humanoid.JumpPower = 0
501
				for i = 1,5 do
502
					canwalk = false
503
					local punchclone = punch:Clone()
504
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
505
					punchclone:Play()
506
					 
507
					for i = 0,1 , 0.2 do
508
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
509
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
510
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
511
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
512
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
513
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
514
						game:GetService("RunService").RenderStepped:wait()
515
					end
516
					local punchclone = punch:Clone()
517
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
518
					punchclone:Play()
519
					 
520
					for i = 0,1 , 0.2 do
521
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
522
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
523
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.17093325, 0.566676855, -0.588714123, 0.326090425, 0.945334494, 0.00191744766, 0.0820002183, -0.0262649618, -0.996286333, -0.941772997, 0.325036645, -0.0860823616),i)
524
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.03311968, 0.461995363, -0.38648963, 0.618004739, -0.781325519, -0.0871556699, 0.618887961, 0.551870644, -0.558942437, 0.484814674, 0.291489393, 0.824611425),i)
525
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
526
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
527
						game:GetService("RunService").RenderStepped:wait()
528
					end
529
					local punchclone = punch:Clone()
530
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
531
					punchclone:Play()
532
					 
533
				end
534
				for i = 1,5 do
535
					canwalk = false
536
					local punchclone = punch:Clone()
537
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
538
					punchclone:Play()
539
					 
540
					for i = 0,1 , 0.35 do
541
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
542
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
543
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
544
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
545
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
546
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
547
						game:GetService("RunService").RenderStepped:wait()
548
					end
549
					local punchclone = punch:Clone()
550
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
551
					punchclone:Play()
552
					 
553
					for i = 0,1 , 0.35 do
554
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
555
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
556
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.17093325, 0.566676855, -0.588714123, 0.326090425, 0.945334494, 0.00191744766, 0.0820002183, -0.0262649618, -0.996286333, -0.941772997, 0.325036645, -0.0860823616),i)
557
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.03311968, 0.461995363, -0.38648963, 0.618004739, -0.781325519, -0.0871556699, 0.618887961, 0.551870644, -0.558942437, 0.484814674, 0.291489393, 0.824611425),i)
558
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
559
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
560
						game:GetService("RunService").RenderStepped:wait()
561
					end
562
					local punchclone = punch:Clone()
563
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
564
					punchclone:Play()
565
					 
566
				end
567
				for i = 1,5 do
568
					local punchclone = punch:Clone()
569
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
570
					punchclone:Play()
571
					 
572
					for i = 0,1 , 0.4 do
573
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
574
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
575
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
576
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
577
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
578
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
579
						game:GetService("RunService").RenderStepped:wait()
580
					end
581
					local punchclone = punch:Clone()
582
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
583
					punchclone:Play()
584
					 
585
					for i = 0,1 , 0.4 do
586
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
587
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
588
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.17093325, 0.566676855, -0.588714123, 0.326090425, 0.945334494, 0.00191744766, 0.0820002183, -0.0262649618, -0.996286333, -0.941772997, 0.325036645, -0.0860823616),i)
589
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.03311968, 0.461995363, -0.38648963, 0.618004739, -0.781325519, -0.0871556699, 0.618887961, 0.551870644, -0.558942437, 0.484814674, 0.291489393, 0.824611425),i)
590
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
591
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
592
						game:GetService("RunService").RenderStepped:wait()
593
					end
594
					local punchclone = punch:Clone()
595
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
596
					punchclone:Play()
597
					 
598
				end
599
				for i = 1,20 do
600
					local punchclone = punch:Clone()
601
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
602
					punchclone:Play()
603
					 
604
					for i = 0,1 , 0.4 do
605
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
606
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
607
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
608
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
609
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
610
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
611
						game:GetService("RunService").RenderStepped:wait()
612
					end
613
					local punchclone = punch:Clone()
614
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
615
					punchclone:Play()
616
					 
617
					for i = 0,1 , 0.4 do
618
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
619
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
620
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.17093325, 0.566676855, -0.588714123, 0.326090425, 0.945334494, 0.00191744766, 0.0820002183, -0.0262649618, -0.996286333, -0.941772997, 0.325036645, -0.0860823616),i)
621
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.03311968, 0.461995363, -0.38648963, 0.618004739, -0.781325519, -0.0871556699, 0.618887961, 0.551870644, -0.558942437, 0.484814674, 0.291489393, 0.824611425),i)
622
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
623
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
624
						game:GetService("RunService").RenderStepped:wait()
625
					end
626
					local punchclone = punch:Clone()
627
					punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
628
					punchclone:Play()
629
					 
630
				end
631
				armcanattack = false
632
				canwalk = true
633
				using = false
634
				humanoid.Parent:BreakJoints()
635
				local boom = Instance.new("Explosion", workspace)
636
				boom.Position = humanoid.Parent.Torso.Position
637
				boom.BlastRadius = 0.5
638
				local hitoof = Instance.new("Sound", humanoid.Parent.Head)
639
				hitoof.SoundId = "rbxassetid://771324077"
640
				hitoof.Volume = 3
641
				hitoof.TimePosition = 5.1
642
				hitoof:Play()
643
				local explosion = Instance.new("Sound", humanoid.Parent.Head)
644
				explosion.SoundId = "rbxassetid://130803364"
645
				explosion.Volume = 10
646
				explosion:Play()
647
				wait(1.5)
648
				explosion:Stop()
649
				hitoof:Stop()
650
			end
651
		end
652
		game.Players.LocalPlayer.Character["Right Arm"].Touched:connect(touched)
653
		armcanattack = false
654
		canwalk = true
655
		using = false
656
	end
657
end
658
mouse.KeyDown:connect(attacc)
659
function kickthefurfag(key)
660
	if key == "g" and not using then
661
		using = true
662
		canwalk = false
663
		hittd = false
664
		local sensoryee1 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Leg"])
665
		sensoryee1.Size = Vector3.new(1,1,1)
666
		sensoryee1.CanCollide = false
667
		sensoryee1.Transparency = 0
668
		sensoryee1:BreakJoints()
669
		local weldsensor = Instance.new("Weld", sensoryee1)
670
		weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
671
		weldsensor.Part1 = sensoryee1
672
		weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
673
		local function kicked(part)
674
			sensoryee1:destroy()
675
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
676
			if humanoid then
677
				--canbefps = true
678
				hittd = true
679
				humanoid.WalkSpeed = 0
680
				humanoid.JumpPower = 0
681
				game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
682
				game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0
683
				punch:Play()
684
				wait(0.5)
685
				for i = 0,1 , 0.05 do
686
					headweld.C0 = headweld.C0:lerp(CFrame.new(0.0192918777, 1.54277778, -0.552471161, 0.999394238, 0.0267358776, -0.0224312302, -2.599965e-06, 0.642803192, 0.766039133, 0.0348992571, -0.765574396, 0.642409086),i)
687
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.97511852, -0.684444427, 1, 7.09343726e-27, -1.96394811e-26, -1.65597681e-26, 0.829041839, -0.55919075, 1.19149551e-26, 0.55919075, 0.829041839),i)
688
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.69545364, 1.02498245, 1, 8.33037116e-27, -8.30512761e-27, 1.84277907e-27, 0.587786973, 0.809019029, 1.17634938e-26, -0.809019029, 0.587786973),i)
689
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0.150976658, -0.603237152, 1, -3.70407732e-22, -4.55732897e-22, -2.65674116e-22, 0.406738937, -0.913547099, 5.23749266e-22, 0.913547099, 0.406738907),i)
690
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.150976658, -0.603237152, 1, -3.70407732e-22, -4.55732897e-22, -2.65674116e-22, 0.406738937, -0.913547099, 5.23749266e-22, 0.913547099, 0.406738907),i)
691
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 1.80491375e-26, -5.65455497e-27, -1.84277907e-26, 0.866028428, -0.499996245, -4.08945493e-27, 0.499996245, 0.866028428):inverse(),i)
692
					game:GetService("RunService").RenderStepped:wait()
693
				end
694
				humanoid.Parent.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,0,-3)
695
				humanoid.Parent.Torso.CFrame = CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position)
696
				wait(0.3)
697
				for i = 0,1 , 0.07 do
698
					headweld.C0 = headweld.C0:lerp(CFrame.new(0.0192918777, 1.54277778, -0.552471161, 0.999394238, 0.0267358776, -0.0224312302, -2.599965e-06, 0.642803192, 0.766039133, 0.0348992571, -0.765574396, 0.642409086),i)
699
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.84595358, 0.746810913, 1, -6.61380983e-27, 1.04154883e-25, -4.31315925e-26, 0.882951677, 0.469469398, -9.49662312e-26, -0.469469309, 0.882951558),i)
700
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.43540072, -1.26526642, 1, 2.01948392e-28, -3.07592644e-26, -2.91971503e-26, 0.309028178, -0.951055586, 9.39060022e-27, 0.951055467, 0.309028089),i)
701
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0.15097785, 0.536071777, 1, 5.85133651e-22, 5.01299648e-23, -2.65674166e-22, 0.374605715, 0.927186906, 5.23749266e-22, -0.927186787, 0.374605745),i)
702
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.15097785, 0.536071777, 1, 5.85133651e-22, 5.01299648e-23, -2.65674166e-22, 0.374605715, 0.927186906, 5.23749266e-22, -0.927186787, 0.374605745),i)
703
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -1.90734863e-06, 0, 1, 3.5038046e-26, -5.8766982e-26, -1.03372333e-26, 0.927190065, 0.374597758, 6.76022241e-26, -0.374597758, 0.927190006):inverse(),i)
704
					game:GetService("RunService").RenderStepped:wait()
705
				end
706
				humanoid.Parent.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,0,-4)
707
				humanoid.Parent.Torso.CFrame = CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position)
708
				--local rhandclonefur = humanoid.Parent.Torso["Right Shoulder"]:Clone()
709
									local rhandweldfur = Instance.new("Weld", humanoid.Parent.Torso)
710
									rhandweldfur.Part0 = humanoid.Parent.Torso
711
									rhandweldfur.Part1 = humanoid.Parent["Right Arm"]
712
									rhandweldfur.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
713
									local lhandweldfur = Instance.new("Weld", humanoid.Parent.Torso)
714
									lhandweldfur.Part0 = humanoid.Parent.Torso
715
									lhandweldfur.Part1 = humanoid.Parent["Left Arm"]
716
									lhandweldfur.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
717
									--local llegclone = humanoid.Parent.Torso["Left Hip"]:Clone()
718
									local llegweldfur = Instance.new("Weld", humanoid.Parent.Torso)
719
									llegweldfur.Part0 = humanoid.Parent.Torso
720
									llegweldfur.Part1 = humanoid.Parent["Left Leg"]
721
									llegweldfur.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
722
									--local rlegclone = humanoid.Parent.Torso["Right Hip"]:Clone()
723
									local rlegweldfur = Instance.new("Weld", humanoid.Parent.Torso)
724
									rlegweldfur.Part0 = humanoid.Parent.Torso
725
									rlegweldfur.Part1 = humanoid.Parent["Right Leg"]
726
									rlegweldfur.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
727
									--local rootjointclone = humanoid.Parent.HumanoidRootPart.RootJoint:Clone()
728
									local humanoidrootpartfur = Instance.new("Weld", humanoid.Parent.Torso)
729
									humanoidrootpartfur.Part0 = humanoid.Parent.HumanoidRootPart
730
									humanoidrootpartfur.Part1 = humanoid.Parent.Torso
731
									--local heed = humanoid.Parent.Torso["Neck"]:Clone()
732
									local headweldfur = Instance.new("Weld", humanoid.Parent.Torso)
733
									headweldfur.Part0 = humanoid.Parent.Torso
734
									headweldfur.Part1 = humanoid.Parent.Head
735
									headweldfur.C0 = headweld.C0 * CFrame.new(0,1.5,0)
736
									for i = 0,0.7 , 0.07 do
737
										headweldfur.C0 = headweldfur.C0:lerp(CFrame.new(0, 1.44868422, -0.453197479, 1, -1.21169035e-27, -1.77209714e-26, 9.14779977e-27, 0.898803353, 0.438370585, 1.58529488e-26, -0.438370407, 0.898803115),i)
738
										llegweldfur.C0 = llegweldfur.C0:lerp(CFrame.new(-0.5, -1.74549341, -0.405010223, 1, 9.08231085e-23, -5.80211714e-22, -2.65675327e-22, 0.951063275, -0.309020281, 5.23751791e-22, 0.309020311, 0.951063037),i)
739
										rlegweldfur.C0 = rlegweldfur.C0:lerp(CFrame.new(0.5, -2.04146266, 0.317977905, 1, 2.83790199e-22, -5.14157122e-22, -2.65675327e-22, 0.999398291, 0.0348992832, 5.23751791e-22, -0.0348991863, 0.999398053),i)
740
										lhandweldfur.C0 = lhandweldfur.C0:lerp(CFrame.new(-0.610451698, -0.249120951, -0.451892853, 0.743151546, -0.374165177, -0.554731011, 2.00528552e-06, 0.82904911, -0.559189737, 0.669127941, 0.415561259, 0.616110206),i)
741
										rhandweldfur.C0 = rhandweldfur.C0:lerp(CFrame.new(0.849339485, -0.124854803, -0.655277252, 0.559177101, 0.337202102, 0.757374227, 0.0866425484, 0.884781837, -0.457896292, -0.824514329, 0.321665913, 0.465533555),i)
742
										humanoidrootpartfur.C0 = humanoidrootpartfur.C0:lerp(CFrame.new(0, -1.90734863e-06, 0, 1, 3.5038046e-26, -5.8766982e-26, -1.03372333e-26, 0.927190065, 0.374597758, 6.76022241e-26, -0.374597758, 0.927190006),i)
743
										game:GetService("RunService").RenderStepped:wait()
744
									end
745
				for i = 0,1 , 0.04 do
746
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
747
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
748
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.72260725, 0.385421276, 0, 0.865490794, 0.500013113, 0.0302087422, 0.499708682, -0.866017878, 0.0174446627, 0.0348838717, -2.62477647e-06, -0.999391317),i)
749
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.34390306, 0.174765587, -0.502760172, 0.953806698, 0.298583031, 0.0331806801, -0.0622573979, 0.304501295, -0.950475156, -0.293899328, 0.904503822, 0.309024394),i)
750
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
751
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
752
					game:GetService("RunService").RenderStepped:wait()
753
				end
754
				for i = 0,0.8 , 0.1 do
755
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
756
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
757
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
758
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
759
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
760
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
761
					game:GetService("RunService").RenderStepped:wait()
762
				end
763
				punch:Play()
764
				for i = 0,0.7 , 0.07 do
765
					headweldfur.C0 = headweldfur.C0:lerp(CFrame.new(0, 1.50000215, 0, 0.766045749, -1.161559e-06, -0.642787516, 0.219843611, 0.939695835, 0.261998117, 0.60402292, -0.342014879, 0.719850183),i)
766
					llegweldfur.C0 = llegweldfur.C0:lerp(CFrame.new(-0.5, -1.74549341, -0.405010223, 1, 9.08231085e-23, -5.80211714e-22, -2.65675327e-22, 0.951063275, -0.309020281, 5.23751791e-22, 0.309020311, 0.951063037),i)
767
					rlegweldfur.C0 = rlegweldfur.C0:lerp(CFrame.new(0.5, -2.04146266, 0.317977905, 1, 2.83790199e-22, -5.14157122e-22, -2.65675327e-22, 0.999398291, 0.0348992832, 5.23751791e-22, -0.0348991863, 0.999398053),i)
768
					lhandweldfur.C0 = lhandweldfur.C0:lerp(CFrame.new(-0.610451698, -0.249120951, -0.451892853, 0.743151546, -0.374165177, -0.554731011, 2.00528552e-06, 0.82904911, -0.559189737, 0.669127941, 0.415561259, 0.616110206),i)
769
					rhandweldfur.C0 = rhandweldfur.C0:lerp(CFrame.new(0.849339485, -0.124854803, -0.655277252, 0.559177101, 0.337202102, 0.757374227, 0.0866425484, 0.884781837, -0.457896292, -0.824514329, 0.321665913, 0.465533555),i)
770
					humanoidrootpartfur.C0 = humanoidrootpartfur.C0:lerp(CFrame.new(0, 0, 0, 0.829042554, -2.76325771e-08, 0.559185505, 0.116260171, 0.978148758, -0.172366142, -0.546966553, 0.207909778, 0.810926855):inverse(),i)
771
					game:GetService("RunService").RenderStepped:wait()
772
				end		
773
				for i = 0,1 , 0.04 do
774
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
775
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48563504, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
776
		            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
777
		            lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.00435209274, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
778
		            rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
779
		            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0157878399, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
780
					game:GetService("RunService").RenderStepped:wait()
781
				end
782
				--Converted with ttyyuu12345's model to script plugin v4
783
				function sandbox(var,func)
784
					local env = getfenv(func)
785
					local newenv = setmetatable({},{
786
						__index = function(self,k)
787
							if k=="script" then
788
								return var
789
							else
790
								return env[k]
791
							end
792
						end,
793
					})
794
					setfenv(func,newenv)
795
					return func
796
				end
797
				cors = {}
798
				mas = Instance.new("Model",game:GetService("Lighting"))
799
				Part0 = Instance.new("Part")
800
				SpecialMesh1 = Instance.new("SpecialMesh")
801
				Part0.Parent = mas
802
				Part0.Rotation = Vector3.new(0, -90, 0)
803
				Part0.Size = Vector3.new(1.77999985, 0.590000093, 0.520000041)
804
				Part0.CFrame = CFrame.new(8.2007246, 1.93281543, 34.3707199, -5.06630215e-07, -4.61939294e-07, -1.00000072, -2.38420171e-07, 1.00000286, -5.51347796e-07, 1.00000191, -2.38416533e-07, 1.99676788e-06)
805
				Part0.Position = Vector3.new(8.2007246, 1.93281543, 34.3707199)
806
				Part0.Orientation = Vector3.new(0, -90, 0)
807
				Part0.CanCollide = false
808
				SpecialMesh1.Parent = Part0
809
				SpecialMesh1.MeshId = "rbxassetid://442337985"
810
				SpecialMesh1.Scale = Vector3.new(0.300000012, 0.300000012, 0.300000012)
811
				SpecialMesh1.TextureId = "rbxassetid://442337993"
812
				SpecialMesh1.MeshType = Enum.MeshType.FileMesh
813
				SpecialMesh1.Scale = Vector3.new(0.300000012, 0.300000012, 0.300000012)
814
				for i,v in pairs(mas:GetChildren()) do
815
					v.Parent = game:GetService("Players").LocalPlayer.Character
816
					pcall(function() v:MakeJoints() end)
817
				end
818
				mas:Destroy()
819
				for i,v in pairs(cors) do
820
					spawn(function()
821
						pcall(v)
822
					end)
823
				end
824
				Part0:BreakJoints()
825
				local welddl = Instance.new("Weld", Part0)
826
				welddl.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
827
				welddl.Part1 = Part0
828
				welddl.C0 = CFrame.new(-0.039276123, -1.06721604, -1.0592804, 1.19219067e-07, -4.84290979e-07, -1.00000036, -1.19210583e-07, 1.00000143, -5.28995145e-07, 1.00000095, -1.19207265e-07, 1.3709174e-06)
829
				for i = 0,1 , 0.02 do
830
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
831
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
832
					--lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.72260725, 0.385421276, 0, 0.865490794, 0.500013113, 0.0302087422, 0.499708682, -0.866017878, 0.0174446627, 0.0348838717, -2.62477647e-06, -0.999391317),i)
833
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.34390306, 0.174765587, -0.502760172, 0.953806698, 0.298583031, 0.0331806801, -0.0622573979, 0.304501295, -0.950475156, -0.293899328, 0.904503822, 0.309024394),i)
834
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
835
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
836
					game:GetService("RunService").RenderStepped:wait()
837
				end
838
				for i = 0,0.8 , 0.1 do
839
					welddl.C0 = welddl.C0:lerp(CFrame.new(0.149496078, -1.75397778, -0.0924315453, -0.0348965228, -0.999374568, -0.00571133196, 0.99939096, -0.0348971486, 3.4943223e-06, -0.000202797353, -0.00570772588, 0.999983847),i)
840
					llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
841
					rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
842
					lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
843
					rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.00869942, 0.777726173, -0.51766777, 0.524389982, -0.809043169, 0.265451282, 0.020352006, -0.299755126, -0.953799188, 0.851234913, 0.505565226, -0.14072293),i)
844
					humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
845
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
846
					game:GetService("RunService").RenderStepped:wait()
847
				end
848
				humanoid.PlatformStand = true
849
				humanoid.JumpPower = 0
850
				humanoid.WalkSpeed = 0
851
				for i,v in pairs(humanoid.Parent.Torso:GetChildren()) do
852
					if v.ClassName == "Weld" then
853
						v:destroy()
854
					end
855
				end
856
				canwalk = true
857
				canbefps = false
858
				game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
859
				game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
860
				using = false
861
				Part0:Destroy()
862
				if humanoid.Parent:findFirstChild("Health") then
863
                            humanoid.Parent.Health:Remove()
864
                            humanoid.Health = 0.001
865
                            for i,v in pairs(humanoid.Parent:GetChildren()) do
866
                                if v.ClassName == "Part" then
867
                                    for q,w in pairs(v:GetChildren()) do
868
                                        if w.ClassName == "Part" then
869
                                            w:destroy()
870
                                        end
871
                                    end
872
                                end
873
                            end
874
                        end
875
                        if humanoid.Parent:findFirstChild("Torso") then
876
                            humanoid.Parent.Torso.Velocity = mouse.Hit.lookVector * 35
877
                            for i,v in pairs(humanoid.Parent.Torso:GetChildren()) do
878
                                if v.ClassName == "Motor6D" then
879
                                    if v.Name == "Neck" then
880
                                       
881
                                    else
882
                                        v:destroy()
883
                                    end
884
                                end
885
                            end
886
                        end
887
                        humanoid.WalkSpeed = 0
888
                        humanoid.JumpPower = 0
889
                        humanoid.Health = 0
890
                        if humanoid.Parent:findFirstChild("Right Arm") then
891
                            local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
892
                            attachment.Position = Vector3.new(1, 1, 0)
893
                            local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
894
                            ball.Attachment0 = humanoid.Parent["Right Arm"].RightShoulderAttachment
895
                            ball.Attachment1 = attachment
896
                            local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
897
                            collidepartofleftleg.Name = "Bone"
898
                            collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
899
                            collidepartofleftleg.Transparency = 1
900
                            collidepartofleftleg:BreakJoints()
901
                            local weeld = Instance.new("Weld", collidepartofleftleg)
902
                            weeld.Part0 = humanoid.Parent["Right Arm"]
903
                            weeld.Part1 = collidepartofleftleg
904
                            weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
905
                        end
906
                        if humanoid.Parent:findFirstChild("Left Arm") then
907
                            local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
908
                            attachment.Position = Vector3.new(1, 1, 0)
909
                            local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
910
                            ball.Attachment0 = humanoid.Parent.Torso.LeftCollarAttachment
911
                            ball.Attachment1 = humanoid.Parent["Left Arm"].LeftShoulderAttachment
912
                            local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
913
                            collidepartofleftleg.Name = "Bone"
914
                            collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
915
                            collidepartofleftleg.Transparency = 1
916
                            collidepartofleftleg:BreakJoints()
917
                            local weeld = Instance.new("Weld", collidepartofleftleg)
918
                            weeld.Part0 = humanoid.Parent["Left Arm"]
919
                            weeld.Part1 = collidepartofleftleg
920
                            weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
921
                        end
922
                        if humanoid.Parent:findFirstChild("Right Leg") then
923
                            local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
924
                            attachment.Position = Vector3.new(0.5, -1, 0)
925
                            local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
926
                            ball.Attachment0 = humanoid.Parent["Right Leg"].RightFootAttachment
927
                            ball.Attachment1 = attachment
928
                            humanoid.Parent["Right Leg"].RightFootAttachment.Position = Vector3.new(0, 1, 0)
929
                            local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
930
                            collidepartofleftleg.Name = "Bone"
931
                            collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
932
                            collidepartofleftleg.Transparency = 1
933
                            collidepartofleftleg:BreakJoints()
934
                            local weeld = Instance.new("Weld", collidepartofleftleg)
935
                            weeld.Part0 = humanoid.Parent["Right Leg"]
936
                            weeld.Part1 = collidepartofleftleg
937
                            weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
938
                        end
939
                        if humanoid.Parent:findFirstChild("Left Leg") then
940
                            local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
941
                            attachment.Position = Vector3.new(-0.5, -1, 0)
942
                            local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
943
                            ball.Attachment0 = humanoid.Parent["Left Leg"].LeftFootAttachment
944
                            ball.Attachment1 = attachment
945
                            humanoid.Parent["Left Leg"].LeftFootAttachment.Position = Vector3.new(0, 1, 0)
946
                            local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
947
                            collidepartofleftleg.Name = "Bone"
948
                            collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
949
                            collidepartofleftleg.Transparency = 1
950
                            collidepartofleftleg:BreakJoints()
951
                            local weeld = Instance.new("Weld", collidepartofleftleg)
952
                            weeld.Part0 =  humanoid.Parent["Left Leg"]
953
                            weeld.Part1 = collidepartofleftleg
954
                            weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
955
                        end
956
						if humanoid.Parent:findFirstChild("Head") then
957
                            local attachment = Instance.new("Attachment", humanoid.Parent.Head)
958
                            attachment.Position = Vector3.new(0, -0.5, 0)
959
                            humanoid.Parent.Torso.NeckAttachment.Visible = false
960
                            humanoid.Parent.Torso.NeckAttachment.Position = humanoid.Parent.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
961
                            local ball = Instance.new("HingeConstraint", humanoid.Parent)
962
                            ball.Attachment0 = humanoid.Parent.Torso.NeckAttachment
963
                            ball.Attachment1 = attachment
964
                            local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
965
                            collidepartofleftleg.Name = "Bone"
966
                            collidepartofleftleg.Size = Vector3.new(0.5,0.3,0.5)
967
                            collidepartofleftleg.Transparency = 1
968
                            collidepartofleftleg:BreakJoints()
969
                            local weeld = Instance.new("Weld", collidepartofleftleg)
970
                            weeld.Part0 = collidepartofleftleg
971
                            weeld.Part1 = humanoid.Parent["Head"]
972
							if humanoid.Parent.Torso:findFirstChild("Neck") then
973
								humanoid.Parent.Torso.Neck:destroy()
974
							end
975
						end
976
			end
977
		end
978
		sensoryee1.Touched:connect(kicked)
979
		for i = 0,1 , 0.08 do
980
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.906621933, -1.96817839, 3.81469727e-06, 0.939697921, 0.342017353, -1.15483999e-07, -0.342018157, 0.939700484, -1.54780309e-06, 4.20854008e-07, -1.4939601e-06, 1.00000584),i)
981
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(2.04675007, -0.901816607, 3.81469727e-06, -0.241916299, -0.970304012, -1.15483999e-07, 0.970306754, -0.241916746, -1.54780309e-06, -1.47389744e-06, 4.86491388e-07, 1.00000584),i)
982
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.78488255, 0.126835346, 0, 0.913546026, 0.406735331, 1.15483552e-07, -0.406735331, 0.913546026, 1.54779377e-06, 5.24042946e-07, -1.46095226e-06, 1),i)
983
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.92161179, 0.407135487, 0, -0.694653988, -0.719348252, -1.15483999e-07, 0.719350696, -0.694655538, -1.54780309e-06, -1.03318553e-06, 1.1582564e-06, 1.00000584),i)
984
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.0323647447, 0.374601871, -0.926624477, -0.013075971, 0.927188933, 0.374372125, 0.999392211, 5.49364394e-08, 0.0349063426):inverse(),i)
985
			headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.50000882, 0, 0.0349099413, 5.30404058e-08, -0.999393761, -1.5450081e-06, 1.00000596, -1.07041799e-07, 0.999396384, -1.54780309e-06, 0.0349102654),i)
986
			game:GetService("RunService").RenderStepped:wait()
987
		end
988
		wait(0.2)
989
		sensoryee1:destroy()
990
		if not hittd then
991
			using = false
992
			canwalk = true
993
		end
994
	end
995
end
996
mouse.KeyDown:connect(kickthefurfag)
997
function begone(key)
998
	key = key:lower()
999
	if key == "y" and not using then
1000
		using = true
1001
		canwalk = false
1002
		local fuckingnormies = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
1003
		fuckingnormies.SoundId = "rbxassetid://854345294"
1004
		fuckingnormies.TimePosition = 2
1005
		fuckingnormies.Volume = 10
1006
		fuckingnormies:Play()
1007
		for i = 0,1 , 0.02 do
1008
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
1009
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
1010
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.72260725, 0.385421276, 0, 0.865490794, 0.500013113, 0.0302087422, 0.499708682, -0.866017878, 0.0174446627, 0.0348838717, -2.62477647e-06, -0.999391317),i)
1011
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.34390306, 0.174765587, -0.502760172, 0.953806698, 0.298583031, 0.0331806801, -0.0622573979, 0.304501295, -0.950475156, -0.293899328, 0.904503822, 0.309024394),i)
1012
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.139189512, 1.09557003e-26, -0.990273237, -1.2369339e-27, 1, 1.11828922e-26, 0.990273237, 9.87653853e-28, 0.139189512),i)
1013
			headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.469474792, 3.65180045e-27, 0.882945895, -1.41359339e-27, 1, -3.38430072e-27, -0.882945895, 3.40717422e-28, 0.469474792),i)
1014
			game:GetService("RunService").RenderStepped:wait()
1015
		end
1016
		wait(1)
1017
		for i = 0,1 , 0.1 do
1018
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.976385951, -2.07911205, 0, 0.994522691, 0.104521893, -2.48146847e-24, -0.1045219, 0.994522572, -6.61724926e-24, 0, 0, 1),i)
1019
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.706693888, -2.04811049, 0, 0.98480922, -0.173640087, 7.03582031e-15, 0.173640057, 0.984809279, 1.01514464e-15, -7.10520713e-15, 2.21976022e-16, 1),i)
1020
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.14573121, 0.310893774, -0.014090538, -0.173835039, 0.984309137, 0.0302081201, 0.984702349, 0.173369259, 0.0174435899, 0.0119327214, 0.0327783301, -0.999389052),i)
1021
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.96523237, 0.455781698, -0.50786829, 0.481259376, -0.872816563, -0.0810915679, -0.0850538537, 0.0455768034, -0.995333314, 0.872439504, 0.485910654, -0.0523021407),i)
1022
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.309020996, -9.73868278e-27, 0.951055288, -1.41867004e-26, 1, 1.48494745e-26, -0.951055288, -1.80811326e-26, 0.309020996),i)
1023
			headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207920238, 1.15615454e-26, -0.978142679, -1.08547261e-27, 1, 9.90178208e-27, 0.978142679, -2.77679039e-27, 0.207920238),i)
1024
			game:GetService("RunService").RenderStepped:wait()
1025
		end
1026
		meme:Play()
1027
		meme.Volume = 6
1028
		thunder.TimePosition = 0.4
1029
		thunder:Play()
1030
		thunder.Volume = 6
1031
		--Converted with ttyyuu12345's model to script plugin v4
1032
		function sandbox(var,func)
1033
			local env = getfenv(func)
1034
			local newenv = setmetatable({},{
1035
				__index = function(self,k)
1036
					if k=="script" then
1037
						return var
1038
					else
1039
						return env[k]
1040
					end
1041
				end,
1042
			})
1043
			setfenv(func,newenv)
1044
			return func
1045
		end
1046
		cors = {}
1047
		mas = Instance.new("Model",game:GetService("Lighting"))
1048
		Model0 = Instance.new("Model")
1049
		Part1 = Instance.new("Part")
1050
		Part2 = Instance.new("Part")
1051
		Model0.Name = "Beam"
1052
		Model0.Parent = mas
1053
		Part1.Name = "beemblue"
1054
		Part1.Parent = Model0
1055
		Part1.Material = Enum.Material.Neon
1056
		Part1.BrickColor = BrickColor.new("Cyan")
1057
		Part1.Transparency = 0
1058
		Part1.Shape = Enum.PartType.Cylinder
1059
		Part1.Size = Vector3.new(0.0500000007, 3.96000385, 3.96000171)
1060
		Part1.CFrame = CFrame.new(40.7978516, 2.43296385, 64.2700119, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1061
		Part1.Color = Color3.new(0.0156863, 0.686275, 0.92549)
1062
		Part1.Position = Vector3.new(40.7978516, 2.43296385, 64.2700119)
1063
		Part1.Color = Color3.new(0.0156863, 0.686275, 0.92549)
1064
		Part2.Name = "beem"
1065
		Part2.Parent = Model0
1066
		Part2.Material = Enum.Material.Neon
1067
		Part2.BrickColor = BrickColor.new("Institutional white")
1068
		Part2.Transparency = 0
1069
		Part2.Shape = Enum.PartType.Cylinder
1070
		Part2.Size = Vector3.new(0.0500000007, 3.96000385, 3.96000171)
1071
		Part2.CFrame = CFrame.new(40.7682838, 2.43296385, 64.2700119, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1072
		Part2.Color = Color3.new(0.972549, 0.972549, 0.972549)
1073
		Part2.Position = Vector3.new(40.7682838, 2.43296385, 64.2700119)
1074
		Part2.Color = Color3.new(0.972549, 0.972549, 0.972549)
1075
		for i,v in pairs(mas:GetChildren()) do
1076
			v.Parent = game:GetService("Players").LocalPlayer.Character
1077
			pcall(function() v:MakeJoints() end)
1078
		end
1079
		mas:Destroy()
1080
		for i,v in pairs(cors) do
1081
			spawn(function()
1082
				pcall(v)
1083
			end)
1084
		end
1085
		Part1.Anchored = true
1086
		Part2.Anchored = true
1087
		Part1.CanCollide = false
1088
		Part2.CanCollide = false
1089
		local canrag = true
1090
		Part1.CFrame = game.Players.LocalPlayer.Character.Head.CFrame * CFrame.new(0,0,-5) * CFrame.fromEulerAnglesXYZ(0,math.pi/2,0)
1091
		local function ragdolldafurfag(part)
1092
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
1093
			local ragdolled = part.Parent:findFirstChild("ragdolled")
1094
			if humanoid then
1095
				if humanoid.Parent.Name == game.Players.LocalPlayer.Name then
1096
					--nothing
1097
				else
1098
					if ragdolled then
1099
						--nothing again
1100
					else
1101
						local raggd = Instance.new("BoolValue", humanoid.Parent)
1102
						raggd.Name = "ragdolled"
1103
						humanoid.Name = "memes"
1104
						humanoid.PlatformStand = true
1105
						humanoid.JumpPower = 0
1106
						humanoid.WalkSpeed = 0
1107
						local findlefthip = humanoid.Parent.Torso:findFirstChild("Left Hip")
1108
                        if findlefthip then
1109
                            findlefthip:Remove()
1110
                            local glue = Instance.new("Glue",  humanoid.Parent.Torso)
1111
                            glue.Part0 = humanoid.Parent.Torso
1112
                            glue.Part1 = humanoid.Parent["Left Leg"]
1113
                            glue.Name = "Left leg"
1114
                            local collider = Instance.new("Part",  humanoid.Parent["Left Leg"])
1115
                            collider.Position = Vector3.new(0,999,0)
1116
                            collider.Size = Vector3.new(1.5, 1, 1)
1117
                            collider.Shape = "Cylinder"
1118
                            local weld = Instance.new("Weld", collider)
1119
                            weld.Part0 =  humanoid.Parent["Left Leg"]
1120
                            weld.Part1 = collider
1121
                            weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1122
                            collider.TopSurface = "Smooth"
1123
                            collider.BottomSurface = "Smooth"
1124
                            collider.formFactor = "Symmetric"
1125
                            glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
1126
                            glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
1127
                            collider.Transparency = 1
1128
                        end
1129
                        --
1130
                        local findrighthip = humanoid.Parent.Torso:findFirstChild("Right Hip")
1131
                        if findrighthip then
1132
                            findrighthip:Remove()
1133
                            local glue = Instance.new("Glue",  humanoid.Parent.Torso)
1134
                            glue.Part0 = humanoid.Parent.Torso
1135
                            glue.Part1 = humanoid.Parent["Right Leg"]
1136
                            glue.Name = "Right leg"
1137
                            local collider = Instance.new("Part",  humanoid.Parent["Right Leg"])
1138
                            collider.Position = Vector3.new(0,999,0)
1139
                            collider.Size = Vector3.new(1.5, 1, 1)
1140
                            collider.Shape = "Cylinder"
1141
                            local weld = Instance.new("Weld", collider)
1142
                            weld.Part0 =  humanoid.Parent["Right Leg"]
1143
                            weld.Part1 = collider
1144
                            weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1145
                            collider.TopSurface = "Smooth"
1146
                            collider.BottomSurface = "Smooth"
1147
                            collider.formFactor = "Symmetric"
1148
                            glue.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
1149
                            glue.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
1150
                            collider.Transparency = 1
1151
                        end
1152
                        --
1153
                        local findrightshoulder = humanoid.Parent.Torso:findFirstChild("Right Shoulder")
1154
                        if findrightshoulder then
1155
                            findrightshoulder:Remove()
1156
                            local glue = Instance.new("Glue",  humanoid.Parent.Torso)
1157
                            glue.Part0 = humanoid.Parent.Torso
1158
                            glue.Part1 = humanoid.Parent["Right Arm"]
1159
                            glue.Name = "Right arm"
1160
                            local collider = Instance.new("Part",  humanoid.Parent["Right Arm"])
1161
                            collider.Position = Vector3.new(0,999,0)
1162
                            collider.Size = Vector3.new(1.5, 1, 1)
1163
                            collider.Shape = "Cylinder"
1164
                            local weld = Instance.new("Weld", collider)
1165
                            weld.Part0 =  humanoid.Parent["Right Arm"]
1166
                            weld.Part1 = collider
1167
                            weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1168
                            collider.TopSurface = "Smooth"
1169
                            collider.BottomSurface = "Smooth"
1170
                            collider.formFactor = "Symmetric"
1171
                            glue.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1172
                            glue.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
1173
                            collider.Transparency = 1
1174
                        end
1175
                        --
1176
                        local findleftshoulder = humanoid.Parent.Torso:findFirstChild("Left Shoulder")
1177
                        if findleftshoulder then
1178
                            findleftshoulder:Remove()
1179
                            local glue = Instance.new("Glue",  humanoid.Parent.Torso)
1180
                            glue.Part0 = humanoid.Parent.Torso
1181
                            glue.Part1 = humanoid.Parent["Left Arm"]
1182
                            glue.Name = "Left arm"
1183
                            local collider = Instance.new("Part",  humanoid.Parent["Left Arm"])
1184
                            collider.Position = Vector3.new(0,999,0)
1185
                            collider.Size = Vector3.new(1.5, 1, 1)
1186
                            collider.Shape = "Cylinder"
1187
                            local weld = Instance.new("Weld", collider)
1188
                            weld.Part0 =  humanoid.Parent["Left Arm"]
1189
                            weld.Part1 = collider
1190
                            weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
1191
                            collider.TopSurface = "Smooth"
1192
                            collider.BottomSurface = "Smooth"
1193
                            collider.formFactor = "Symmetric"
1194
                            glue.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1195
                            glue.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1196
                            collider.Transparency = 1
1197
                        end
1198
						if humanoid.Parent:findFirstChild("Head") then
1199
                            local attachment = Instance.new("Attachment", humanoid.Parent.Head)
1200
                            attachment.Position = Vector3.new(0, -0.5, 0)
1201
                            humanoid.Parent.Torso.NeckAttachment.Visible = false
1202
                            humanoid.Parent.Torso.NeckAttachment.Position = humanoid.Parent.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
1203
                            local ball = Instance.new("HingeConstraint", humanoid.Parent)
1204
                            ball.Attachment0 = humanoid.Parent.Torso.NeckAttachment
1205
                            ball.Attachment1 = attachment
1206
                            local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
1207
                            collidepartofleftleg.Name = "Bone"
1208
                            collidepartofleftleg.Size = Vector3.new(0.5,0.3,0.5)
1209
                            collidepartofleftleg.Transparency = 1
1210
                            collidepartofleftleg:BreakJoints()
1211
                            local weeld = Instance.new("Weld", collidepartofleftleg)
1212
                            weeld.Part0 = collidepartofleftleg
1213
                            weeld.Part1 = humanoid.Parent["Head"]
1214
							if humanoid.Parent.Torso:findFirstChild("Neck") then
1215
								humanoid.Parent.Torso.Neck:destroy()
1216
							end
1217
                        end
1218
					end
1219
				end
1220
			end
1221
		end
1222
		Part1.Touched:connect(ragdolldafurfag)
1223
		local function changeposandsize()
1224
			for i = 1,200 do
1225
				Part1.Size = Part1.Size + Vector3.new(0.9,0.2,0.1)
1226
				Part2.Size = Part2.Size + Vector3.new(0.9,0.2,0.1)
1227
				Part1.CFrame = Part1.CFrame * CFrame.new(0.7,0,0)
1228
				Part2.CFrame = Part1.CFrame * CFrame.new(0.7,0,0)
1229
				Part1.Transparency = Part1.Transparency + 0.007
1230
				Part2.Transparency = Part2.Transparency + 0.007
1231
				game:GetService("RunService").RenderStepped:wait()
1232
			end
1233
			Model0:destroy()
1234
		end
1235
		changeposandsize()
1236
		armcanattack = false
1237
		canwalk = true
1238
		using = false
1239
	end
1240
end
1241
mouse.KeyDown:connect(begone)
1242
--Converted with ttyyuu12345's model to script plugin v4
1243
function sandbox(var,func)
1244
	local env = getfenv(func)
1245
	local newenv = setmetatable({},{
1246
		__index = function(self,k)
1247
			if k=="script" then
1248
				return var
1249
			else
1250
				return env[k]
1251
			end
1252
		end,
1253
	})
1254
	setfenv(func,newenv)
1255
	return func
1256
end
1257
cors = {}
1258
mas = Instance.new("Model",game:GetService("Lighting"))
1259
Soundo0 = Instance.new("Sound")
1260
Soundo0.Parent = mas
1261
Soundo0.SoundId = "rbxassetid://1206917308"
1262
Soundo0.Volume = 10
1263
Soundo0.PlaybackSpeed = 1
1264
Soundo0.Looped = true
1265
for i,v in pairs(mas:GetChildren()) do
1266
	v.Parent = game:GetService("Players").LocalPlayer.Character.Torso
1267
	pcall(function() v:MakeJoints() end)
1268
end
1269
mas:Destroy()
1270
for i,v in pairs(cors) do
1271
	spawn(function()
1272
		pcall(v)
1273
	end)
1274
end
1275
function kysfurshit(key)
1276
	key = key:lower()
1277
	if key == "q" and not using then
1278
		using = true
1279
		hittd = false
1280
		canwalk = false
1281
		local canscan = true
1282
		textfag.Text = "fox faggotz"
1283
		for i = 0,1 , 0.04 do
1284
	       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.241932347, -1.21926342e-26, -0.970292151, 6.1341824e-27, 1, -2.5243549e-27, 0.970292151, -3.11126741e-27, 0.241932347),i)
1285
		   headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 0.0349053368, -8.60723958e-07, 0.999392927, -0.139084309, 0.990273297, 0.00485882163, -0.989666522, -0.139170289, 0.0345666632),i)
1286
	       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.00984383, 0.0977787971, 0, 0.500008941, 0.866028607, -2.82727748e-27, -0.866028607, 0.500008941, -2.3224065e-27, -2.57484199e-27, 2.3224065e-27, 1),i)
1287
	       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.0187254, 0.622524977, -0.477272034, 0.499353766, -0.855162203, 0.139084026, 0.0396689773, -0.137795925, -0.989666998, 0.865489781, 0.499711245, -0.0348855592),i)
1288
	       game:GetService("RunService").RenderStepped:wait()
1289
		end
1290
		local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
1291
		sensoryee.Size = Vector3.new(1,1,1)
1292
		sensoryee.CanCollide = false
1293
		sensoryee.Transparency = 0
1294
		sensoryee:BreakJoints()
1295
		local weldsensor = Instance.new("Weld", sensoryee)
1296
		weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
1297
		weldsensor.Part1 = sensoryee
1298
		weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
1299
		local function hagotem(part)
1300
			sensoryee:destroy()
1301
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
1302
			if humanoid then
1303
				local canscan = true
1304
				for i,v in pairs(humanoid.Parent:GetChildren()) do
1305
					if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1306
						if v:findFirstChild("Handle") then
1307
							if v.Handle:findFirstChild("Mesh") then
1308
								if canscan and v.Handle.Mesh.MeshId == "rbxassetid://188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or v.Handle.Mesh.MeshId == "rbxassetid://170939831" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or v.Handle.Mesh.MeshId == "rbxassetid://135446047" or v.Handle.Mesh.MeshId == "rbxassetid://335037790" or v.Handle.Mesh.MeshId == "rbxassetid://361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or v.Handle.Mesh.MeshId == "rbxassetid://1374148" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Handle.Mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1309
									canscan = false
1310
									hittd = true
1311
									--canbefps = true
1312
									local furfaggrowl = Instance.new("Sound", humanoid.Parent.Head)
1313
									furfaggrowl.SoundId = "rbxassetid://133322522"
1314
									furfaggrowl.Volume = 10
1315
									local rip = Instance.new("Sound", humanoid.Parent.Head)
1316
									rip.SoundId = "rbxassetid://132514715"
1317
									rip.Volume = 10
1318
									if humanoid.Parent:findFirstChild("HumanoidRootPart") then
1319
										humanoid.Parent.HumanoidRootPart:destroy()
1320
										humanoid.WalkSpeed = 0
1321
										humanoid.JumpPower = 0
1322
									else
1323
										humanoid.PlatformStand = true
1324
										humanoid.JumpPower = 0
1325
										humanoid.WalkSpeed = 0
1326
									end
1327
									textfag.Text = "die from cancer"
1328
									local headfurfagweld = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
1329
									headfurfagweld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
1330
									headfurfagweld.Part1 = humanoid.Parent.Head
1331
									headfurfagweld.C0 = CFrame.new(0.00057220459, -1.29444742, -0.873190403, -0.996955156, -0.0485438928, 0.0610030033, -0.0641870201, 0.0669786036, -0.995689929, 0.0442487523, -0.996576011, -0.0698903799)
1332
									furfaggrowl:Play()
1333
									furfaggrowl.TimePosition = 1
1334
									wait(1)
1335
									for i = 0,1 , 0.04 do
1336
								       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.09488106, 0.667919636, 0.0639152527, 0.0739268959, -0.95855093, 0.275169909, -0.02475233, -0.277602971, -0.960379243, 0.996955395, 0.0641870052, -0.044248756),i)
1337
								       game:GetService("RunService").RenderStepped:wait()
1338
									end
1339
									wait(1.4)
1340
									for i = 1,6 do
1341
										wait(0.1)
1342
										for i = 0,1 , 0.15 do
1343
											rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1344
									       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1345
										   headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.4344244, 0.102565765, 1.00000012, -1.10566744e-26, 3.04815854e-27, 1.14353277e-26, 0.970295191, -0.241921842, -2.61223027e-28, 0.241921738, 0.970297754),i)
1346
											llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)									       
1347
											lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50013542, -0.0218527317, 0.298622131, 1, 2.38743288e-22, 1.16448315e-22, -2.65628601e-22, 0.898784995, 0.438389838, 6.26162773e-28, -0.438389868, 0.898784935),i)
1348
									       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.541605, 1.54031897, -0.202716827, 0.99939096, -0.0331876501, -0.0107830577, -0.0348742045, -0.960688651, -0.275429219, -0.00121831207, 0.275637507, -0.961260855),i)
1349
									       game:GetService("RunService").RenderStepped:wait()
1350
										end
1351
										for i = 0,1 , 0.15 do
1352
									       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -1.90734863e-06, 1.00069809, 0.999390602, 6.40860435e-07, -0.0349101759, -0.0242511462, 0.71933949, -0.694235682, 0.0251118187, 0.694659173, 0.718900979):inverse(),i)
1353
											rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.18236089, -0.21427536, 1.00000012, 1.51461294e-27, 4.19042913e-27, -4.41762107e-27, 0.499996245, 0.866027534, -7.79938216e-28, -0.866027653, 0.499996305),i)
1354
										   llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.18106127, -0.0497360229, 1.00000012, 1.98161859e-27, -5.80601626e-27, -9.08767763e-27, 0.500005603, 0.866032362, -3.82406602e-27, -0.866032481, 0.500005662),i)
1355
											headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.53122997, -0.198875427, 1.00000012, -1.209166e-26, -3.76759968e-27, 1.21169035e-26, 0.927188694, 0.374603868, -1.64222563e-27, -0.374603897, 0.927188814),i)
1356
									       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50013542, -0.0218527317, 0.298622131, 1, 2.38743288e-22, 1.16448315e-22, -2.65628601e-22, 0.898784995, 0.438389838, 6.26162773e-28, -0.438389868, 0.898784935),i)
1357
									       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.4887104, 0.0502290726, -0.938224792, 0.999392748, 0.0233488977, -0.025931986, -0.0348734297, 0.642351151, -0.765616715, -0.00121889159, 0.766055882, 0.642774582),i)
1358
									       game:GetService("RunService").RenderStepped:wait()
1359
										end
1360
										local punchclone = punch:Clone()
1361
										punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1362
										punchclone:Play()
1363
									end
1364
									local goreclone = gore:Clone()
1365
									goreclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
1366
									goreclone:Play()
1367
									for i,v in pairs(humanoid.Parent:GetChildren()) do
1368
				                        if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1369
				                            v:destroy()
1370
				                        end
1371
				                        if v.Name == "Head" then
1372
				                            v.Transparency = 1
1373
				                        end
1374
				                    end
1375
				                    if humanoid.Parent.Head:findFirstChild("face") then
1376
				                        humanoid.Parent.Head.face.Transparency = 1
1377
				                    end
1378
									for i = 1,math.random(10,15) do
1379
			                            --Converted with ttyyuu12345's model to script plugin v4
1380
										function sandbox(var,func)
1381
											local env = getfenv(func)
1382
											local newenv = setmetatable({},{
1383
												__index = function(self,k)
1384
													if k=="script" then
1385
														return var
1386
													else
1387
														return env[k]
1388
													end
1389
												end,
1390
											})
1391
											setfenv(func,newenv)
1392
											return func
1393
										end
1394
										cors = {}
1395
										mas = Instance.new("Model",game:GetService("Lighting"))
1396
										local Part0 = Instance.new("Part")
1397
										Part0.Name = "bl00d"
1398
										Part0.Parent = mas
1399
										Part0.Material = Enum.Material.SmoothPlastic
1400
										Part0.BrickColor = BrickColor.new("Maroon")
1401
										Part0.Size = Vector3.new(1.16000009, 0.0500000007, 1.12000048)
1402
										Part0.CFrame = CFrame.new(17.569994, 1.14527643, 34.9399986, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1403
										Part0.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1404
										Part0.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1405
										Part0.Color = Color3.new(0.458824, 0, 0)
1406
										Part0.Position = Vector3.new(17.569994, 1.14527643, 34.9399986)
1407
										Part0.Color = Color3.new(0.458824, 0, 0)
1408
										Part0.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
1409
										Part0:BreakJoints()
1410
										for i,v in pairs(mas:GetChildren()) do
1411
											v.Parent = humanoid.Parent
1412
											pcall(function() v:MakeJoints() end)
1413
										end
1414
										mas:Destroy()
1415
										for i,v in pairs(cors) do
1416
											spawn(function()
1417
												pcall(v)
1418
											end)
1419
										end
1420
									end
1421
									wait(1)
1422
									for i = 0,1 , 0.05 do
1423
										llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)									       
1424
											lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50013542, -0.0218527317, 0.298622131, 1, 2.38743288e-22, 1.16448315e-22, -2.65628601e-22, 0.898784995, 0.438389838, 6.26162773e-28, -0.438389868, 0.898784935),i)
1425
								       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.241932347, -1.21926342e-26, -0.970292151, 6.1341824e-27, 1, -2.5243549e-27, 0.970292151, -3.11126741e-27, 0.241932347),i)
1426
									   headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 0.0349053368, -8.60723958e-07, 0.999392927, -0.139084309, 0.990273297, 0.00485882163, -0.989666522, -0.139170289, 0.0345666632),i)
1427
								       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.00984383, 0.0977787971, 0, 0.500008941, 0.866028607, -2.82727748e-27, -0.866028607, 0.500008941, -2.3224065e-27, -2.57484199e-27, 2.3224065e-27, 1),i)
1428
								       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(2.0187254, 0.622524977, -0.477272034, 0.499353766, -0.855162203, 0.139084026, 0.0396689773, -0.137795925, -0.989666998, 0.865489781, 0.499711245, -0.0348855592),i)
1429
								       game:GetService("RunService").RenderStepped:wait()
1430
									end
1431
									wait(0.2)
1432
									furfaggrowl:destroy()
1433
									headfurfagweld:destroy()
1434
									local vel = Instance.new("BodyVelocity", humanoid.Parent.Torso)
1435
									vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
1436
									vel.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.rightVector * -math.random(400,469) + Vector3.new(0,2,0)
1437
									rip:Play()
1438
									for i = 0,1 , 0.06 do
1439
								       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.469489127, 5.58134868e-26, 0.882937074, 6.51283563e-26, 1, -8.06026519e-26, -0.882937074, 1.03650012e-25, 0.469489127),i)
1440
									   headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 0.469437033, 6.2015107e-07, -0.882963717, 0.122883834, 0.99026978, 0.0653332844, 0.874373734, -0.139172658, 0.464868218),i)
1441
								       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.04339027, 0.288009644, 0, 0.17366755, 0.984804034, 6.07514039e-13, -0.984804392, 0.173667595, 1.61679779e-13, 5.32907052e-14, -6.27053964e-13, 0.999999762),i)
1442
								       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.66837502, 0.581873178, -0.720844269, 0.932209134, -0.33412677, 0.139085978, 0.118962891, -0.080060333, -0.989665747, 0.341809034, 0.939121604, -0.0348842852),i)
1443
								       game:GetService("RunService").RenderStepped:wait()
1444
									end
1445
									wait(1)
1446
									for i = 0,0.3 , 0.004 do
1447
								       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1448
										headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48563504, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
1449
								        llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
1450
								        lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.00435209274, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
1451
								        rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1452
								        rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0157878399, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
1453
								        game:GetService("RunService").RenderStepped:wait()
1454
									end
1455
									using = false
1456
									canwalk = true
1457
								end
1458
							end
1459
						end
1460
					end
1461
				end
1462
			end
1463
		end
1464
		sensoryee.Touched:connect(hagotem)
1465
		for i = 0,1 , 0.04 do
1466
	       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.469489127, 5.58134868e-26, 0.882937074, 6.51283563e-26, 1, -8.06026519e-26, -0.882937074, 1.03650012e-25, 0.469489127),i)
1467
		   headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 0.469437033, 6.2015107e-07, -0.882963717, 0.122883834, 0.99026978, 0.0653332844, 0.874373734, -0.139172658, 0.464868218),i)
1468
	       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.04339027, 0.288009644, 0, 0.17366755, 0.984804034, 6.07514039e-13, -0.984804392, 0.173667595, 1.61679779e-13, 5.32907052e-14, -6.27053964e-13, 0.999999762),i)
1469
	       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.66837502, 0.581873178, -0.720844269, 0.932209134, -0.33412677, 0.139085978, 0.118962891, -0.080060333, -0.989665747, 0.341809034, 0.939121604, -0.0348842852),i)
1470
	       game:GetService("RunService").RenderStepped:wait()
1471
		end
1472
		sensoryee:destroy()
1473
		if not hittd then
1474
			for i = 0,0.3 , 0.004 do
1475
				if canwalk and howmuch < 1 then
1476
		            humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1477
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48563504, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
1478
		            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
1479
		            lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.00435209274, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
1480
		            rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1481
		            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0157878399, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
1482
		            game:GetService("RunService").RenderStepped:wait()
1483
				end
1484
			end
1485
			using = false
1486
			canwalk = true
1487
		end
1488
		textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
1489
	end
1490
end
1491
mouse.KeyDown:connect(kysfurshit)
1492
1493
dancing = false
1494
function switch(key)
1495
	key = key:lower()
1496
	if key == "m" then
1497
		if not dancing then
1498
			dancing = true
1499
			canwalk = false
1500
			Sound0:Stop()
1501
			Soundo0:Play()
1502
			while dancing do
1503
				for i = 0.3,0.46 , 0.015 do
1504
					if dancing then
1505
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48587704, 0.117996216, 1, 0, 0, 0, 0.971754849, -0.235992551, 0, 0.235992551, 0.971754849),i)
1506
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.965696573, 0.259673119, 0, -0.259673119, 0.965696573),i)
1507
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.95006418, -0.312054634, 1, 0, 0, 0, 0.950064242, -0.312054634, 0, 0.312054634, 0.950064301),i)
1508
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.96244073, -0.271492958, 1, 0, 0, 0, 0.962440372, -0.271492869, 0, 0.271492898, 0.962440431),i)
1509
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.905787945, -0.292123914, 1, 0, 0, 0, -0.811575294, -0.584247589, 0, 0.584247708, -0.811575413),i)
1510
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.902326107, -0.296873212, 1, 0, 0, 0, -0.804652274, -0.593746305, 0, 0.593746424, -0.804652333),i)
1511
						game:GetService("RunService").RenderStepped:wait()
1512
					end
1513
				end
1514
				for i = 0.35,0.4 , 0.025 do
1515
					if dancing then
1516
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.49878788, -0.0347967446, 1, 0, 0, 0, 0.997575462, 0.0695933998, 0, -0.0695933998, 0.997575462),i)
1517
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.996428847, -0.0844366103, 0, 0.0844366103, 0.996428847),i)
1518
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.9939127, 0.110167503, 1, 0, 0, 0, 0.993912935, 0.110167526, 0, -0.110167533, 0.993912995),i)
1519
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.99822259, 0.0595921576, 1, 0, 0, 0, 0.998222768, 0.0595921502, 0, -0.0595921502, 0.998222828),i)
1520
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.276759148, -0.447396159, 1, 0, 0, 0, 0.44648236, -0.894792259, 0, 0.894792318, 0.44648239),i)
1521
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.278767586, -0.448392987, 1, 0, 0, 0, 0.442464471, -0.896785915, 0, 0.896785975, 0.44246453),i)
1522
						game:GetService("RunService").RenderStepped:wait()
1523
					end
1524
				end
1525
				for i = 0.3,0.46 , 0.015 do
1526
					if dancing then
1527
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.49145174, -0.0920622349, 1, 0, 0, 0, 0.982902825, 0.18412438, 0, -0.18412438, 0.982902825),i)
1528
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.980066657, -0.198668674, 0, 0.198668674, 0.980066657),i)
1529
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.97351623, 0.228617132, 1, 0, 0, 0, 0.973516226, 0.228617072, 0, -0.228617072, 0.973516285),i)
1530
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.97264862, 0.232279897, 1, 0, 0, 0, 0.972648799, 0.232279852, 0, -0.232279852, 0.972648919),i)
1531
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.0977592468, 0.296988964, 1, 0, 0, 0, 0.804481149, 0.593977869, 0, -0.593977928, 0.804481208),i)
1532
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.0882134438, 0.283605695, 1, 0, 0, 0, 0.823572338, 0.567211032, 0, -0.567211092, 0.823572397),i)
1533
						game:GetService("RunService").RenderStepped:wait()
1534
					end
1535
				end
1536
				for i = 0.35,0.4 , 0.025 do
1537
					if dancing then
1538
						headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.49878788, -0.0347967446, 1, 0, 0, 0, 0.997575462, 0.0695933998, 0, -0.0695933998, 0.997575462),i)
1539
						humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.996428847, -0.0844366103, 0, 0.0844366103, 0.996428847),i)
1540
						rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.9939127, 0.110167503, 1, 0, 0, 0, 0.993912935, 0.110167526, 0, -0.110167533, 0.993912995),i)
1541
						llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.99822259, 0.0595921576, 1, 0, 0, 0, 0.998222768, 0.0595921502, 0, -0.0595921502, 0.998222828),i)
1542
						lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0.276759148, -0.447396159, 1, 0, 0, 0, 0.44648236, -0.894792259, 0, 0.894792318, 0.44648239),i)
1543
						rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0.278767586, -0.448392987, 1, 0, 0, 0, 0.442464471, -0.896785915, 0, 0.896785975, 0.44246453),i)
1544
						game:GetService("RunService").RenderStepped:wait()
1545
					end
1546
				end
1547
			end
1548
		else
1549
			Soundo0:Stop()
1550
			Sound0:Play()
1551
			dancing = false
1552
			canwalk = true
1553
		end
1554
	end
1555
end
1556
mouse.KeyDown:connect(switch)
1557
function dontremove()
1558
	if Soundo0.Parent == nil then
1559
		Soundo0.Parent = game.Players.LocalPlayer.Character.Torso
1560
	end
1561
end
1562
game:GetService("RunService").RenderStepped:connect(dontremove)
1563
function cancerify()
1564
	local hum = mouse.Target.Parent:findFirstChild("Humanoid")
1565
	if hum then
1566
		if hum.Parent.Name == "Rufus14" then
1567
			
1568
		else
1569
			textfag.Text = "get cancer"
1570
			--Converted with ttyyuu12345's model to script plugin v4
1571
			function sandbox(var,func)
1572
				local env = getfenv(func)
1573
				local newenv = setmetatable({},{
1574
					__index = function(self,k)
1575
						if k=="script" then
1576
							return var
1577
						else
1578
							return env[k]
1579
						end
1580
					end,
1581
				})
1582
				setfenv(func,newenv)
1583
				return func
1584
			end
1585
			cors = {}
1586
			mas = Instance.new("Model",game:GetService("Lighting"))
1587
			local Accessory0 = Instance.new("Accessory")
1588
			Part1 = Instance.new("Part")
1589
			local SpecialMesh2 = Instance.new("SpecialMesh")
1590
			Accessory0.Name = "Cancer"
1591
			Accessory0.Parent = mas
1592
			Part1.Name = "Handle"
1593
			Part1.Parent = Accessory0
1594
			Part1.Rotation = Vector3.new(0, 0, 0.0199999996)
1595
			Part1.FormFactor = Enum.FormFactor.Custom
1596
			Part1.Size = Vector3.new(1.25000024, 1.12999988, 1.1400001)
1597
			Part1.CFrame = CFrame.new(113.104767, 31.6558571, -259.307831, 1, -0.000407999993, 0, 0.000407999993, 1, 0, 0, 0, 1)
1598
			Part1.BottomSurface = Enum.SurfaceType.Smooth
1599
			Part1.TopSurface = Enum.SurfaceType.Smooth
1600
			Part1.Position = Vector3.new(113.104767, 31.6558571, -259.307831)
1601
			Part1.Orientation = Vector3.new(0, 0, 0.0199999996)
1602
			SpecialMesh2.Parent = Part1
1603
			SpecialMesh2.MeshId = "rbxassetid://361948302"
1604
			SpecialMesh2.Scale = Vector3.new(0.5, 0.5, 0.5)
1605
			SpecialMesh2.TextureId = "http://www.roblox.com/asset/?id=361948503 "
1606
			SpecialMesh2.MeshType = Enum.MeshType.FileMesh
1607
			SpecialMesh2.Scale = Vector3.new(0.5, 0.5, 0.5)
1608
			for i,v in pairs(mas:GetChildren()) do
1609
				v.Parent = hum.Parent
1610
				pcall(function() v:MakeJoints() end)
1611
			end
1612
			mas:Destroy()
1613
			for i,v in pairs(cors) do
1614
				spawn(function()
1615
					pcall(v)
1616
				end)
1617
			end
1618
			wait(1.5)
1619
			textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
1620
		end
1621
	end
1622
end
1623
mouse.Button1Down:connect(cancerify)
1624
function attackflag(key)
1625
	if key == "e" and not using then
1626
		using = true
1627
		canwalk = false
1628
		textfag.Text = "go back to forest"
1629
		local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
1630
		sensoryee2.Size = Vector3.new(1, 1, 1)
1631
		sensoryee2.CanCollide = false
1632
		sensoryee2.Transparency = 0
1633
		sensoryee2:BreakJoints()
1634
		local weldsensor = Instance.new("Weld", sensoryee2)
1635
		weldsensor.Part0 = sensoryee2
1636
		weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1637
		weldsensor.C0 = CFrame.new(0,0.5,0)
1638
		local function hagotem1(part)
1639
			sensoryee2:destroy()
1640
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
1641
			if humanoid then
1642
				local canscan = true
1643
				for i,v in pairs(humanoid.Parent:GetChildren()) do
1644
					if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1645
						if v:findFirstChild("Handle") then
1646
							if v.Handle:findFirstChild("Mesh") then
1647
								if canscan and v.Handle.Mesh.MeshId == "rbxassetid://188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or v.Handle.Mesh.MeshId == "rbxassetid://170939831" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or v.Handle.Mesh.MeshId == "rbxassetid://135446047" or v.Handle.Mesh.MeshId == "rbxassetid://335037790" or v.Handle.Mesh.MeshId == "rbxassetid://361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or v.Handle.Mesh.MeshId == "rbxassetid://1374148" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Handle.Mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1648
									canscan = false
1649
									for i = 0,1 , 0.05 do
1650
										humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(CFrame.new(game.Players.LocalPlayer.Character.Torso.CFrame.x + 1,0,game.Players.LocalPlayer.Character.Torso.CFrame.z + 1) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0),i)
1651
										game:GetService("RunService").RenderStepped:wait()
1652
									end
1653
									humanoid.Parent.Torso.Anchored = true
1654
									for q,w in pairs(humanoid.Parent:GetChildren()) do
1655
										if w.ClassName == "Part" then
1656
											w.Anchored = true
1657
										end
1658
									end
1659
								end
1660
							end
1661
						end
1662
					end
1663
				end
1664
			end
1665
		end
1666
		sensoryee2.Touched:connect(hagotem1)
1667
		for i = 0,1 , 0.04 do
1668
	       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.469489127, 5.58134868e-26, 0.882937074, 6.51283563e-26, 1, -8.06026519e-26, -0.882937074, 1.03650012e-25, 0.469489127),i)
1669
		   --headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 0.469437033, 6.2015107e-07, -0.882963717, 0.122883834, 0.99026978, 0.0653332844, 0.874373734, -0.139172658, 0.464868218),i)
1670
	       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.04339027, 0.288009644, 0, 0.17366755, 0.984804034, 6.07514039e-13, -0.984804392, 0.173667595, 1.61679779e-13, 5.32907052e-14, -6.27053964e-13, 0.999999762),i)
1671
	       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.66837502, 0.581873178, -0.720844269, 0.932209134, -0.33412677, 0.139085978, 0.118962891, -0.080060333, -0.989665747, 0.341809034, 0.939121604, -0.0348842852),i)
1672
	       game:GetService("RunService").RenderStepped:wait()
1673
		end
1674
		for i = 1,5 do
1675
		for i = 0,1 , 0.05 do
1676
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, -1.48936939e-27, 1.31266455e-27, 1.1359597e-27, 0.9702968, 0.241918504, -1.61558713e-27, -0.241918504, 0.9702968):inverse(),i)
1677
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -2, 0, 1, 1.26217745e-29, 8.58280665e-28, -1.76704843e-28, 0.961263537, 0.275633663, -5.04870979e-28, -0.275633663, 0.961263537),i)
1678
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1679
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -0.7634058, -0.96099472, 1, 1.14858148e-27, -1.71656133e-27, -1.38839519e-27, 0.951060057, -0.309013367, 1.31266455e-27, 0.309013367, 0.951060057),i)
1680
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1681
			game:GetService("RunService").RenderStepped:wait()
1682
		end
1683
		local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
1684
		sensoryee.Size = Vector3.new(1, 1, 1)
1685
		sensoryee.CanCollide = false
1686
		sensoryee.Transparency = 0
1687
		sensoryee:BreakJoints()
1688
		local weldsensor = Instance.new("Weld", sensoryee)
1689
		weldsensor.Part0 = sensoryee
1690
		weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
1691
		weldsensor.C0 = CFrame.new(0,0.5,0)
1692
		local function hagotem(part)
1693
			sensoryee:destroy()
1694
			local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
1695
			if humanoid then
1696
				local canscan = true
1697
				for i,v in pairs(humanoid.Parent:GetChildren()) do
1698
					if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1699
						if v:findFirstChild("Handle") then
1700
							if v.Handle:findFirstChild("Mesh") then
1701
								if canscan and v.Handle.Mesh.MeshId == "rbxassetid://188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or v.Handle.Mesh.MeshId == "rbxassetid://170939831" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or v.Handle.Mesh.MeshId == "rbxassetid://135446047" or v.Handle.Mesh.MeshId == "rbxassetid://335037790" or v.Handle.Mesh.MeshId == "rbxassetid://361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or v.Handle.Mesh.MeshId == "rbxassetid://1374148" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Handle.Mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1702
									canscan = false
1703
									hittd = true
1704
									humanoid.Health = humanoid.Health - math.random(20,25)
1705
									local furfaggrowl = Instance.new("Sound", humanoid.Parent.Head)
1706
									furfaggrowl.SoundId = "rbxassetid://146163534"
1707
									furfaggrowl.Volume = 10
1708
									furfaggrowl:Play()
1709
									local rip = Instance.new("Sound", humanoid.Parent.Head)
1710
									rip.SoundId = "rbxassetid://132514715"
1711
									rip.Volume = 10
1712
									textfag.Text = "kaboom"
1713
									punch:Play()
1714
									for i = 1,math.random(2,3) do
1715
			                            --Converted with ttyyuu12345's model to script plugin v4
1716
										function sandbox(var,func)
1717
											local env = getfenv(func)
1718
											local newenv = setmetatable({},{
1719
												__index = function(self,k)
1720
													if k=="script" then
1721
														return var
1722
													else
1723
														return env[k]
1724
													end
1725
												end,
1726
											})
1727
											setfenv(func,newenv)
1728
											return func
1729
										end
1730
										cors = {}
1731
										mas = Instance.new("Model",game:GetService("Lighting"))
1732
										local Part0 = Instance.new("Part")
1733
										Part0.Name = "bl00d"
1734
										Part0.Parent = mas
1735
										Part0.Material = Enum.Material.SmoothPlastic
1736
										Part0.BrickColor = BrickColor.new("Maroon")
1737
										Part0.Size = Vector3.new(1.16000009, 0.0500000007, 1.12000048)
1738
										Part0.CFrame = CFrame.new(17.569994, 1.14527643, 34.9399986, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1739
										Part0.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1740
										Part0.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1741
										Part0.Color = Color3.new(0.458824, 0, 0)
1742
										Part0.Position = Vector3.new(17.569994, 1.14527643, 34.9399986)
1743
										Part0.Color = Color3.new(0.458824, 0, 0)
1744
										Part0.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
1745
										Part0:BreakJoints()
1746
										for i,v in pairs(mas:GetChildren()) do
1747
											v.Parent = humanoid.Parent
1748
											pcall(function() v:MakeJoints() end)
1749
										end
1750
										mas:Destroy()
1751
										for i,v in pairs(cors) do
1752
											spawn(function()
1753
												pcall(v)
1754
											end)
1755
										end
1756
									end
1757
								end
1758
							end
1759
						end
1760
					end
1761
				end
1762
			end
1763
		end
1764
		sensoryee.Touched:connect(hagotem)
1765
		for i = 0,1 , 0.1 do
1766
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 1.80491375e-26, -5.65455497e-27, -1.84277907e-26, 0.866028428, -0.499996245, -4.08945493e-27, 0.499996245, 0.866028428):inverse(),i)
1767
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -2, 0, 1, 1.26217745e-29, 8.58280665e-28, -1.76704843e-28, 0.961263537, 0.275633663, -5.04870979e-28, -0.275633663, 0.961263537),i)
1768
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1769
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.82702696, -0.937412262, 1, -8.83524214e-28, 3.00398233e-27, 2.27191941e-27, 0.788023472, -0.615659177, -2.27191941e-27, 0.615659177, 0.788023472),i)
1770
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1771
			game:GetService("RunService").RenderStepped:wait()
1772
		end
1773
		sensoryee:destroy()
1774
		sensoryee2:destroy()
1775
		end
1776
		for i = 0,1 , 0.05 do
1777
		   humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1778
				headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48563504, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
1779
	            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
1780
	            lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.00435209274, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
1781
	            rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1782
	            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0157878399, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
1783
	       game:GetService("RunService").RenderStepped:wait()
1784
		end
1785
textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
1786
		canwalk = true
1787
		using = false
1788
	end
1789
end
1790
mouse.KeyDown:connect(attackflag)
1791
function attackflag1(key)
1792
	if key == "t" and not using then
1793
		using = true
1794
		canwalk = false
1795
		textfag.Text = "lol rip"
1796
		local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
1797
		sensoryee2.Size = Vector3.new(1, 1, 1)
1798
		sensoryee2.CanCollide = false
1799
		sensoryee2.Transparency = 0
1800
		sensoryee2:BreakJoints()
1801
		local weldsensor = Instance.new("Weld", sensoryee2)
1802
		weldsensor.Part0 = sensoryee2
1803
		weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
1804
		weldsensor.C0 = CFrame.new(0,0.5,0)
1805
		local function hagotem1(part)
1806
			sensoryee2:destroy()
1807
			humanoidfurshit = part.Parent:findFirstChild("Humanoid")
1808
			if humanoidfurshit then
1809
				local canscan = true
1810
				for i,v in pairs(humanoidfurshit.Parent:GetChildren()) do
1811
					if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1812
						if v:findFirstChild("Handle") then
1813
							if v.Handle:findFirstChild("Mesh") then
1814
								if canscan and v.Handle.Mesh.MeshId == "rbxassetid://188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or v.Handle.Mesh.MeshId == "rbxassetid://170939831" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or v.Handle.Mesh.MeshId == "rbxassetid://135446047" or v.Handle.Mesh.MeshId == "rbxassetid://335037790" or v.Handle.Mesh.MeshId == "rbxassetid://361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or v.Handle.Mesh.MeshId == "rbxassetid://1374148" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Handle.Mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1815
									canscan = false
1816
									for i = 0,1 , 0.05 do
1817
										humanoidfurshit.Parent.Torso.CFrame = humanoidfurshit.Parent.Torso.CFrame:lerp(CFrame.new(game.Players.LocalPlayer.Character.Torso.CFrame.x + 1,0,game.Players.LocalPlayer.Character.Torso.CFrame.z + -1) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0),i)
1818
										game:GetService("RunService").RenderStepped:wait()
1819
									end
1820
									humanoidfurshit.Parent.Torso.Anchored = true
1821
									for q,w in pairs(humanoidfurshit.Parent:GetChildren()) do
1822
										if w.ClassName == "Part" then
1823
											w.Anchored = true
1824
										end
1825
									end
1826
								end
1827
							end
1828
						end
1829
					end
1830
				end
1831
			end
1832
		end
1833
		sensoryee2.Touched:connect(hagotem1)
1834
		for i = 0,1 , 0.04 do
1835
	       humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.469489127, 5.58134868e-26, 0.882937074, 6.51283563e-26, 1, -8.06026519e-26, -0.882937074, 1.03650012e-25, 0.469489127),i)
1836
		   --headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 0.469437033, 6.2015107e-07, -0.882963717, 0.122883834, 0.99026978, 0.0653332844, 0.874373734, -0.139172658, 0.464868218),i)
1837
	       lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.04339027, 0.288009644, 0, 0.17366755, 0.984804034, 6.07514039e-13, -0.984804392, 0.173667595, 1.61679779e-13, 5.32907052e-14, -6.27053964e-13, 0.999999762),i)
1838
	       rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.66837502, 0.581873178, -0.720844269, 0.932209134, -0.33412677, 0.139085978, 0.118962891, -0.080060333, -0.989665747, 0.341809034, 0.939121604, -0.0348842852),i)
1839
	       game:GetService("RunService").RenderStepped:wait()
1840
		end
1841
		wait(0.3)
1842
		for i = 0,1 , 0.1 do
1843
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, -1.48936939e-27, 1.31266455e-27, 1.1359597e-27, 0.9702968, 0.241918504, -1.61558713e-27, -0.241918504, 0.9702968):inverse(),i)
1844
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -2, 0, 1, 1.26217745e-29, 8.58280665e-28, -1.76704843e-28, 0.961263537, 0.275633663, -5.04870979e-28, -0.275633663, 0.961263537),i)
1845
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1846
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -0.7634058, -0.96099472, 1, 1.14858148e-27, -1.71656133e-27, -1.38839519e-27, 0.951060057, -0.309013367, 1.31266455e-27, 0.309013367, 0.951060057),i)
1847
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1848
			game:GetService("RunService").RenderStepped:wait()
1849
		end
1850
		local function hagotem(part)
1851
			if humanoidfurshit then
1852
				local canscan = true
1853
				for i,v in pairs(humanoidfurshit.Parent:GetChildren()) do
1854
					if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1855
						if v:findFirstChild("Handle") then
1856
							if v.Handle:findFirstChild("Mesh") then
1857
								if canscan and v.Handle.Mesh.MeshId == "rbxassetid://188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=188699722" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=170939831" or v.Handle.Mesh.MeshId == "rbxassetid://170939831" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=135446047" or v.Handle.Mesh.MeshId == "rbxassetid://135446047" or v.Handle.Mesh.MeshId == "rbxassetid://335037790" or v.Handle.Mesh.MeshId == "rbxassetid://361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=361948302" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=1374148" or v.Handle.Mesh.MeshId == "rbxassetid://1374148" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Handle.Mesh.MeshId == "rbxassetid://112495973" or v.Name == "FoxTail" or v.Name == "Zootopia_FoxEars" or v.Name == "FurryCatTail" or v.Handle.Mesh.MeshId == "http://www.roblox.com/asset/?id=112495973" or v.Name == "ArcticFoxHead" then
1858
									canscan = false
1859
									hittd = true
1860
									humanoidfurshit.Parent:BreakJoints()
1861
									textfag.Text = "kaboom"
1862
									gore:Play()
1863
									for i,v in pairs(humanoidfurshit.Parent:GetChildren()) do
1864
				                        if v.ClassName == "Hat" or v.ClassName == "Accessory" then
1865
				                            v:destroy()
1866
				                        end
1867
				                        if v.Name == "Head" then
1868
				                            v.Transparency = 1
1869
				                        end
1870
				                    end
1871
				                    if humanoidfurshit.Parent.Head:findFirstChild("face") then
1872
				                        humanoidfurshit.Parent.Head.face.Transparency = 1
1873
				                    end
1874
									for i = 1,math.random(15,20) do
1875
			                            --Converted with ttyyuu12345's model to script plugin v4
1876
										function sandbox(var,func)
1877
											local env = getfenv(func)
1878
											local newenv = setmetatable({},{
1879
												__index = function(self,k)
1880
													if k=="script" then
1881
														return var
1882
													else
1883
														return env[k]
1884
													end
1885
												end,
1886
											})
1887
											setfenv(func,newenv)
1888
											return func
1889
										end
1890
										cors = {}
1891
										mas = Instance.new("Model",game:GetService("Lighting"))
1892
										local Part0 = Instance.new("Part")
1893
										Part0.Name = "bl00d"
1894
										Part0.Parent = mas
1895
										Part0.Material = Enum.Material.SmoothPlastic
1896
										Part0.BrickColor = BrickColor.new("Maroon")
1897
										Part0.Size = Vector3.new(1.16000009, 0.0500000007, 1.12000048)
1898
										Part0.CFrame = CFrame.new(17.569994, 1.14527643, 34.9399986, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1899
										Part0.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1900
										Part0.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1901
										Part0.Color = Color3.new(0.458824, 0, 0)
1902
										Part0.Position = Vector3.new(17.569994, 1.14527643, 34.9399986)
1903
										Part0.Color = Color3.new(0.458824, 0, 0)
1904
										Part0.CFrame = humanoidfurshit.Parent.Head.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
1905
										Part0:BreakJoints()
1906
										for i,v in pairs(mas:GetChildren()) do
1907
											v.Parent = humanoidfurshit.Parent
1908
											pcall(function() v:MakeJoints() end)
1909
										end
1910
										mas:Destroy()
1911
										for i,v in pairs(cors) do
1912
											spawn(function()
1913
												pcall(v)
1914
											end)
1915
										end
1916
									end
1917
								end
1918
							end
1919
						end
1920
					end
1921
				end
1922
			end
1923
		end
1924
		hagotem()
1925
		for i = 0,1 , 0.1 do
1926
			humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 1.80491375e-26, -5.65455497e-27, -1.84277907e-26, 0.866028428, -0.499996245, -4.08945493e-27, 0.499996245, 0.866028428):inverse(),i)
1927
			llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -2, 0, 1, 1.26217745e-29, 8.58280665e-28, -1.76704843e-28, 0.961263537, 0.275633663, -5.04870979e-28, -0.275633663, 0.961263537),i)
1928
			lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50000048, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1929
			rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.82702696, -0.937412262, 1, -8.83524214e-28, 3.00398233e-27, 2.27191941e-27, 0.788023472, -0.615659177, -2.27191941e-27, 0.615659177, 0.788023472),i)
1930
			rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0, 0.298294067, 1, 4.14517148e-22, -4.16016716e-22, -2.65673535e-22, 0.951056898, 0.30901596, 5.23747954e-22, -0.30901596, 0.951056898),i)
1931
			game:GetService("RunService").RenderStepped:wait()
1932
		end
1933
		sensoryee2:destroy()
1934
		for i = 0,1 , 0.05 do
1935
		   humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1936
				headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48563504, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
1937
	            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
1938
	            lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.00435209274, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
1939
	            rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1940
	            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0157878399, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
1941
	       game:GetService("RunService").RenderStepped:wait()
1942
		end
1943
textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
1944
		canwalk = true
1945
		using = false
1946
	end
1947
end
1948
mouse.KeyDown:connect(attackflag1)
1949
while true do
1950
    if howmuch <= -1 then
1951
        howmuch = 0
1952
    end
1953
    if howmuch >= 4 then
1954
        howmuch = 0
1955
    end
1956
    if canwalk and howmuch < 1 then
1957
        for i = 0,1 , 0.01 do
1958
			if canwalk and howmuch < 1 then
1959
				
1960
	            humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1961
				headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.48563504, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
1962
	            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
1963
	            lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.00435209274, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
1964
	            rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1965
	            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0157878399, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
1966
	            game:GetService("RunService").RenderStepped:wait()
1967
			end
1968
        end
1969
		for i = 0,0.3 , 0.004 do
1970
			if canwalk and howmuch < 1 then
1971
				humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
1972
				headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5222218, -0.102214813, 1, 6.31088724e-30, -1.00974196e-28, -2.5243549e-29, 0.990270674, 0.139171436, -5.04870979e-29, -0.139171436, 0.990270674),i)
1973
	            llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.606146812, -2.0409379, 0.23392868, 0.994522691, 0.104527831, 4.48272353e-09, -0.10395515, 0.989075184, 0.104526937, 0.0109259691, -0.103954434, 0.994521797),i)
1974
	            lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.56223869, 0.0409388542, 0, 0.997564316, 0.0697554871, 0, -0.0697554871, 0.997564316, 0, 0, 2.5243549e-29, 1),i)
1975
	            rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.589343071, -2.06024575, -0.139556885, 0.997564077, -0.0693742931, 0.0072911568, 0.0697562397, 0.992102206, -0.104268931, 1.75914945e-08, 0.104523741, 0.994524658),i)
1976
	            rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.61233902, 0.0523746014, 0, 0.990270674, -0.139171436, 5.04870979e-29, 0.139171436, 0.990270674, 2.01948392e-28, 1.00974196e-28, 2.27191941e-28, 1),i)
1977
	            game:GetService("RunService").RenderStepped:wait()
1978
			end
1979
        end
1980
    end
1981
    if canwalk and howmuch >= 1 then
1982
        if canwalk then
1983
            for i = 0,0.5 , 0.05 do
1984
				if canwalk and howmuch >= 1 then
1985
					
1986
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 1, -4.22829445e-28, 5.04870979e-28, -4.7962743e-28, 0.98481518, -0.173646927, 4.54383881e-28, 0.173646927, 0.98481518),i)
1987
			 	   humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -0.0218505859, -0.207862854, 1, -2.65673535e-22, 5.23747954e-22, 1.5097504e-22, 0.978147745, 0.207910955, -5.67539301e-22, -0.207910955, 0.978147745),i)
1988
		           llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.35635376, 0.984832764, 1, -1.46412584e-27, -1.17303617e-26, 1.15615454e-26, -0.0348859876, 0.999391198, -1.61558713e-27, -0.999391198, -0.0348859876),i)
1989
		           lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50004387, 0.396968603, -0.897594452, 1, -2.59686077e-27, 2.57052452e-26, 2.58237777e-26, 0.0697625875, -0.99756366, 7.97269708e-28, 0.99756366, 0.069762595),i)
1990
		           rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.81869507, -0.922622681, 1, -1.72713825e-22, -5.61306619e-22, -2.65673535e-22, 0.719345152, -0.694654465, 5.23747954e-22, 0.694656253, 0.719344676),i)
1991
		           rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.49791718, 0.365714312, 0.961071014, 0.9993909, -0.00121776958, -0.0348753184, 0.0348965712, 0.0348958485, 0.998781562, 7.18205513e-07, -0.999390185, 0.0349170938),i)
1992
		           game:GetService("RunService").RenderStepped:wait()
1993
				end
1994
            end
1995
        end
1996
        if canwalk then
1997
            for i = 0,0.5 , 0.05 do
1998
				if canwalk and howmuch >= 1 then
1999
					
2000
					headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 1, -4.22829445e-28, 5.04870979e-28, -4.7962743e-28, 0.98481518, -0.173646927, 4.54383881e-28, 0.173646927, 0.98481518),i)
2001
			 	   humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, -0.0218505859, -0.00492095947, 1, -2.65673535e-22, 5.23747954e-22, 1.5097504e-22, 0.978147686, 0.20791094, -5.67539301e-22, -0.20791094, 0.978147686),i)
2002
		           llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.5, -1.86941528, -0.882217407, 1, -6.4421537e-26, 9.04728795e-26, 1.09784194e-25, 0.694650829, -0.71934706, -1.64587939e-26, 0.71934706, 0.694650829),i)
2003
		           lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.50009155, 0.335239649, 1.03072357, 1, 3.69729388e-23, 2.6307918e-22, -2.65664548e-22, 0.139171526, 0.99026835, 0, -0.99026829, 0.139171541),i)
2004
		           rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(0.5, -1.35365295, 1.16508484, 1, 5.03939593e-22, 3.01560673e-22, -2.65673358e-22, -0.0697558299, 0.997564077, 5.237476e-22, -0.997564077, -0.0697558299),i)
2005
		           rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.49795914, 0.313182116, -0.842372894, 0.9993909, 0.00364707294, -0.034706641, -0.0348764732, 0.0696690381, -0.996960342, -0.00121800881, 0.997563541, 0.0697537959),i)
2006
		           game:GetService("RunService").RenderStepped:wait()
2007
				end
2008
            end
2009
        end
2010
    end
2011
    game:GetService("RunService").RenderStepped:wait()
2012
end