Advertisement
Guest User

Untitled

a guest
Sep 11th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 129.36 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86. local h,t
  87. --Give the server mouse data every second frame, but only if the values changed
  88. --If player is not moving their mouse, client won't fire events
  89. local HB = game:GetService("RunService").Heartbeat
  90. while true do
  91. if h~=Mouse.Hit or t~=Mouse.Target then
  92. h,t=Mouse.Hit,Mouse.Target
  93. Event:FireServer({isMouse=true,Target=t,Hit=h})
  94. end
  95. --Wait 2 frames
  96. for i=1,2 do
  97. HB:Wait()
  98. end
  99. end]==],script)
  100.  
  101. ----Sandboxed game object that allows the usage of client-side methods and services
  102. --Real game object
  103. local RealGame = game
  104.  
  105. --Metatable for fake service
  106. local FakeService_Metatable = {
  107. __index = function(self,k)
  108. local s = rawget(self,"_RealService")
  109. if s then
  110. return typeof(s[k])=="function"
  111. and function(_,...)return s[k](s,...)end or s[k]
  112. end
  113. end,
  114. __newindex = function(self,k,v)
  115. local s = rawget(self,"_RealService")
  116. if s then s[k]=v end
  117. end
  118. }
  119. local function FakeService(t,RealService)
  120. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  121. return setmetatable(t,FakeService_Metatable)
  122. end
  123.  
  124. --Fake game object
  125. local FakeGame = {
  126. GetService = function(self,s)
  127. return rawget(self,s) or RealGame:GetService(s)
  128. end,
  129. Players = FakeService({
  130. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  131. },"Players"),
  132. UserInputService = FakeService(UIS,"UserInputService"),
  133. ContextActionService = FakeService(CAS,"ContextActionService"),
  134. RunService = FakeService({
  135. _btrs = {},
  136. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  137. BindToRenderStep = function(self,name,_,fun)
  138. self._btrs[name] = self.Heartbeat:Connect(fun)
  139. end,
  140. UnbindFromRenderStep = function(self,name)
  141. self._btrs[name]:Disconnect()
  142. end,
  143. },"RunService")
  144. }
  145. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  146. FakeGame.service = FakeGame.GetService
  147. FakeService(FakeGame,game)
  148. --Changing owner to fake player object to support owner:GetMouse()
  149. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  150. end
  151.  
  152. wait(1)
  153. --By Rufus14
  154. mouse = game.Players.LocalPlayer:GetMouse()
  155. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  156. game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Remove()
  157. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  158. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  159. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  160. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  161. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  162. game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Remove()
  163. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  164. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  165. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  166. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  167. local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  168. game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
  169. local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  170. llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  171. llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  172. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  173. local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  174. game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
  175. local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  176. rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  177. rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  178. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  179. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  180. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  181. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  182. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  183. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  184. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  185. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  186. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  187. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  188. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  189. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  190. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
  191. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  192. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  193. Sound0 = Instance.new("Sound")
  194. Sound0.Volume = 5
  195. Sound0.Parent = game.Players.LocalPlayer.Character.Head
  196. Sound0.SoundId = "rbxassetid://1103329236"
  197. Sound0.Looped = true
  198. Sound0:Play()
  199. canwalk = true
  200. howmuch = 0
  201. hittd = false
  202. function change(key)
  203. if key == "w" or key == "a" or key == "s" or key == "d" then
  204. howmuch = howmuch + 1
  205. end
  206. end
  207. function otherchange(key)
  208. if key == "w" or key == "a" or key == "s" or key == "d" then
  209. howmuch = howmuch - 1
  210. end
  211. end
  212. mouse.KeyDown:connect(change)
  213. mouse.KeyUp:connect(otherchange)
  214. --By Rufus14
  215. mouse = game.Players.LocalPlayer:GetMouse()
  216. using = false
  217. hittd = false
  218. --Converted with ttyyuu12345's model to script plugin v4
  219. local txtfag = Instance.new("BillboardGui", game.Players.LocalPlayer.Character.Head)
  220. txtfag.Adornee = suckadick
  221. txtfag.Name = "kys nigga"
  222. txtfag.Size = UDim2.new(2, 0, 1.2, 0)
  223. txtfag.StudsOffset = Vector3.new(-5, 3, 0)
  224. local textfag = Instance.new("TextLabel", txtfag)
  225. textfag.Size = UDim2.new(6, 0, 1, 0)
  226. textfag.FontSize = "Size8"
  227. textfag.TextScaled = true
  228. textfag.TextTransparency = 0
  229. textfag.BackgroundTransparency = 1
  230. textfag.TextTransparency = 0
  231. textfag.TextStrokeTransparency = 0
  232. textfag.Font = "Cartoon"
  233. textfag.TextStrokeColor3 = Color3.new(0, 1, 0)
  234. v = Instance.new("Part")
  235. v.Name = "ColorBrick"
  236. v.Parent = part
  237. v.FormFactor = "Symmetric"
  238. v.Anchored = true
  239. v.CanCollide = false
  240. v.BottomSurface = "Smooth"
  241. v.TopSurface = "Smooth"
  242. v.Size = Vector3.new(10, 5, 3)
  243. v.Transparency = 0.7
  244. v.BrickColor = game.Players.LocalPlayer.Character.Torso.BrickColor
  245. v.Transparency = 1
  246. textfag.TextColor3 = v.BrickColor.Color
  247. textfag.TextStrokeColor3 = Color3.new(0, 0, 0)
  248. v.Shape = "Block"
  249. textfag.Text = "Script By Rufus14"
  250. wait(2)
  251. textfag.Text = "lol"
  252. wait(0.3)
  253. textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
  254. function sandbox(var,func)
  255. local env = getfenv(func)
  256. local newenv = setmetatable({},{
  257. __index = function(self,k)
  258. if k=="script" then
  259. return var
  260. else
  261. return env[k]
  262. end
  263. end,
  264. })
  265. setfenv(func,newenv)
  266. return func
  267. end
  268. cors = {}
  269. mas = Instance.new("Model",game:GetService("Lighting"))
  270. Model0 = Instance.new("Model")
  271. Part1 = Instance.new("Part")
  272. Weld2 = Instance.new("Weld")
  273. Part3 = Instance.new("Part")
  274. Decal4 = Instance.new("Decal")
  275. Decal5 = Instance.new("Decal")
  276. Model0.Name = "Flagloldiefurshits"
  277. Model0.Parent = mas
  278. Part1.Name = "Stick"
  279. Part1.Parent = Model0
  280. Part1.Material = Enum.Material.Wood
  281. Part1.BrickColor = BrickColor.new("Dark orange")
  282. Part1.Rotation = Vector3.new(0, 0, 126)
  283. Part1.Shape = Enum.PartType.Cylinder
  284. Part1.Size = Vector3.new(5.71999931, 0.319999993, 0.839999914)
  285. Part1.CFrame = CFrame.new(-11.7340431, 3.40531874, -51.7842827, -0.58777535, -0.809025586, 0, 0.809025586, -0.58777535, 0, 0, 0, 1)
  286. Part1.BottomSurface = Enum.SurfaceType.Smooth
  287. Part1.TopSurface = Enum.SurfaceType.Smooth
  288. Part1.Color = Color3.new(0.627451, 0.372549, 0.207843)
  289. Part1.Position = Vector3.new(-11.7340431, 3.40531874, -51.7842827)
  290. Part1.Orientation = Vector3.new(0, 0, 126)
  291. Part1.Color = Color3.new(0.627451, 0.372549, 0.207843)
  292. Weld2.Parent = Part1
  293. 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)
  294. Weld2.Part0 = Part1
  295. Weld2.Part1 = Part3
  296. Part3.Name = "Flag"
  297. Part3.Parent = Model0
  298. Part3.BrickColor = BrickColor.new("Really black")
  299. Part3.Rotation = Vector3.new(0, 0, 36)
  300. Part3.Size = Vector3.new(3.32999945, 2.10000038, 0.0700000003)
  301. Part3.CFrame = CFrame.new(-14.124959, 3.81048417, -51.7742958, 0.809026122, -0.587772548, 0, 0.587772548, 0.809026122, 0, 0, 0, 1)
  302. Part3.BottomSurface = Enum.SurfaceType.Smooth
  303. Part3.Color = Color3.new(0, 0, 0)
  304. Part3.Position = Vector3.new(-14.124959, 3.81048417, -51.7742958)
  305. Part3.Orientation = Vector3.new(0, 0, 36)
  306. Part3.Color = Color3.new(0, 0, 0)
  307. Decal4.Parent = Part3
  308. Decal4.Texture = "rbxassetid://1150731665"
  309. Decal5.Name = "Decal1"
  310. Decal5.Parent = Part3
  311. Decal5.Texture = "rbxassetid://1150731665"
  312. Decal5.Face = Enum.NormalId.Back
  313. for i,v in pairs(mas:GetChildren()) do
  314. v.Parent = game:GetService("Players").LocalPlayer.Character
  315. pcall(function() v:MakeJoints() end)
  316. end
  317. mas:Destroy()
  318. for i,v in pairs(cors) do
  319. spawn(function()
  320. pcall(v)
  321. end)
  322. end
  323. weld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  324. weld.Part0 = game.Players.LocalPlayer.Character.Torso
  325. weld.Part1 = Part1
  326. 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)
  327. local punch = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
  328. punch.Volume = 3
  329. punch.SoundId = "rbxassetid://131237241"
  330. punch.TimePosition = 0
  331. local FILTHYPRANK = Instance.new("Sound", game.Players.LocalPlayer.Character["Head"])
  332. FILTHYPRANK.Volume = 10
  333. FILTHYPRANK.SoundId = "rbxassetid://676845644"
  334. FILTHYPRANK.TimePosition = 3.6
  335. local thunder = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
  336. thunder.Volume = 3
  337. thunder.SoundId = "rbxassetid://130818250"
  338. thunder.TimePosition = 0.4
  339. local meme = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
  340. meme.Volume = 3
  341. meme.SoundId = "rbxassetid://138677306"
  342. local gore = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
  343. gore.Volume = 4
  344. gore.SoundId = "rbxassetid://429400881"
  345. gore.TimePosition = 0
  346. canbefps = false
  347. function switchfps(key)
  348. key = key:lower()
  349. if key == "z" then
  350. if canbefps then
  351. canbefps = false
  352. else
  353. canbefps = true
  354. end
  355. end
  356. end
  357. mouse.KeyDown:connect(switchfps)
  358. function fps()
  359. if canbefps then
  360. workspace.CurrentCamera.CFrame = game.Players.LocalPlayer.Character.Head.CFrame * CFrame.new(0,0,-0.9)
  361. end
  362. end
  363. game:GetService("RunService").RenderStepped:connect(fps)
  364. function tentaclekick(key)
  365. if key == "f" and not using then
  366. using = true
  367. canwalk = false
  368. for i = 0,0.7 , 0.05 do
  369. 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)
  370. 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)
  371. 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)
  372. 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)
  373. 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)
  374. game:GetService("RunService").RenderStepped:wait()
  375. end
  376. FILTHYPRANK.TimePosition = 3.8
  377. FILTHYPRANK:Play()
  378. wait(0.6)
  379. local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Leg"])
  380. sensoryee.Size = Vector3.new(1,1,1)
  381. sensoryee.CanCollide = false
  382. sensoryee.Transparency = 0
  383. sensoryee:BreakJoints()
  384. local weldsensor = Instance.new("Weld", sensoryee)
  385. weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
  386. weldsensor.Part1 = sensoryee
  387. weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
  388. local function tentacleshot(part)
  389. sensoryee:destroy()
  390. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  391. if humanoid then
  392. local canscan = true
  393. for i,v in pairs(humanoid.Parent:GetChildren()) do
  394. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  395. if v:findFirstChild("Handle") then
  396. if v.Handle:findFirstChild("Mesh") then
  397. 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
  398. canscan = false
  399. hittd = true
  400. local furfaggrowl = Instance.new("Sound", humanoid.Parent.Head)
  401. furfaggrowl.SoundId = "rbxassetid://534269232"
  402. furfaggrowl.Volume = 7
  403. furfaggrowl:Play()
  404. punch:Play()
  405. local rhandclone = humanoid.Parent.Torso["Right Shoulder"]:Clone()
  406. local rhandweld = Instance.new("Weld", humanoid.Parent.Torso)
  407. rhandweld.Part0 = humanoid.Parent.Torso
  408. rhandweld.Part1 = humanoid.Parent["Right Arm"]
  409. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  410. local lhandweld = Instance.new("Weld", humanoid.Parent.Torso)
  411. lhandweld.Part0 = humanoid.Parent.Torso
  412. lhandweld.Part1 = humanoid.Parent["Left Arm"]
  413. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  414. local llegclone = humanoid.Parent.Torso["Left Hip"]:Clone()
  415. local llegweld = Instance.new("Weld", humanoid.Parent.Torso)
  416. llegweld.Part0 = humanoid.Parent.Torso
  417. llegweld.Part1 = humanoid.Parent["Left Leg"]
  418. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  419. local rlegclone = humanoid.Parent.Torso["Right Hip"]:Clone()
  420. local rlegweld = Instance.new("Weld", humanoid.Parent.Torso)
  421. rlegweld.Part0 = humanoid.Parent.Torso
  422. rlegweld.Part1 = humanoid.Parent["Right Leg"]
  423. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  424. local rootjointclone = humanoid.Parent.HumanoidRootPart.RootJoint:Clone()
  425. local humanoidrootpart = Instance.new("Weld", humanoid.Parent.Torso)
  426. humanoidrootpart.Part0 = humanoid.Parent.HumanoidRootPart
  427. humanoidrootpart.Part1 = humanoid.Parent.Torso
  428. local heed = humanoid.Parent.Torso["Neck"]:Clone()
  429. local headweld = Instance.new("Weld", humanoid.Parent.Torso)
  430. headweld.Part0 = humanoid.Parent.Torso
  431. headweld.Part1 = humanoid.Parent.Head
  432. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  433. for i = 0,0.7 , 0.07 do
  434. 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)
  435. 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)
  436. 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)
  437. 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)
  438. 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)
  439. 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)
  440. game:GetService("RunService").RenderStepped:wait()
  441. end
  442. wait(6)
  443. humanoid.Parent:BreakJoints()
  444. end
  445. end
  446. end
  447. end
  448. end
  449. end
  450. end
  451. sensoryee.Touched:connect(tentacleshot)
  452. for i = 0,0.7 , 0.07 do
  453. 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)
  454. 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)
  455. 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)
  456. 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)
  457. 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)
  458. game:GetService("RunService").RenderStepped:wait()
  459. end
  460. wait(0.2)
  461. sensoryee:destroy()
  462. FILTHYPRANK:Stop()
  463. canwalk = true
  464. using = false
  465. end
  466. end
  467. mouse.KeyDown:connect(tentaclekick)
  468. function attacc(key)
  469. key = key:lower()
  470. if key == "r" and not using then
  471. using = true
  472. canwalk = false
  473. for i = 0,1 , 0.02 do
  474. 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)
  475. 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)
  476. 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)
  477. 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)
  478. 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)
  479. 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)
  480. game:GetService("RunService").RenderStepped:wait()
  481. end
  482. canwalk = false
  483. armcanattack = true
  484. for i = 0,1 , 0.1 do
  485. 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)
  486. 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)
  487. 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)
  488. 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)
  489. 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)
  490. 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)
  491. game:GetService("RunService").RenderStepped:wait()
  492. end
  493. local function touched(part)
  494. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  495. if humanoid and armcanattack then
  496. canwalk = false
  497. hittd = true
  498. punch:Play()
  499. armcanattack = false
  500. humanoid.WalkSpeed = 0
  501. humanoid.JumpPower = 0
  502. for i = 1,5 do
  503. canwalk = false
  504. local punchclone = punch:Clone()
  505. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  506. punchclone:Play()
  507.  
  508. for i = 0,1 , 0.2 do
  509. 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)
  510. 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)
  511. 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)
  512. 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)
  513. 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)
  514. 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)
  515. game:GetService("RunService").RenderStepped:wait()
  516. end
  517. local punchclone = punch:Clone()
  518. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  519. punchclone:Play()
  520.  
  521. for i = 0,1 , 0.2 do
  522. 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)
  523. 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)
  524. 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)
  525. 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)
  526. 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)
  527. 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)
  528. game:GetService("RunService").RenderStepped:wait()
  529. end
  530. local punchclone = punch:Clone()
  531. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  532. punchclone:Play()
  533.  
  534. end
  535. for i = 1,5 do
  536. canwalk = false
  537. local punchclone = punch:Clone()
  538. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  539. punchclone:Play()
  540.  
  541. for i = 0,1 , 0.35 do
  542. 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)
  543. 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)
  544. 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)
  545. 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)
  546. 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)
  547. 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)
  548. game:GetService("RunService").RenderStepped:wait()
  549. end
  550. local punchclone = punch:Clone()
  551. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  552. punchclone:Play()
  553.  
  554. for i = 0,1 , 0.35 do
  555. 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)
  556. 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)
  557. 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)
  558. 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)
  559. 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)
  560. 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)
  561. game:GetService("RunService").RenderStepped:wait()
  562. end
  563. local punchclone = punch:Clone()
  564. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  565. punchclone:Play()
  566.  
  567. end
  568. for i = 1,5 do
  569. local punchclone = punch:Clone()
  570. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  571. punchclone:Play()
  572.  
  573. for i = 0,1 , 0.4 do
  574. 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)
  575. 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)
  576. 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)
  577. 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)
  578. 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)
  579. 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)
  580. game:GetService("RunService").RenderStepped:wait()
  581. end
  582. local punchclone = punch:Clone()
  583. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  584. punchclone:Play()
  585.  
  586. for i = 0,1 , 0.4 do
  587. 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)
  588. 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)
  589. 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)
  590. 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)
  591. 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)
  592. 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)
  593. game:GetService("RunService").RenderStepped:wait()
  594. end
  595. local punchclone = punch:Clone()
  596. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  597. punchclone:Play()
  598.  
  599. end
  600. for i = 1,20 do
  601. local punchclone = punch:Clone()
  602. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  603. punchclone:Play()
  604.  
  605. for i = 0,1 , 0.4 do
  606. 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)
  607. 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)
  608. 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)
  609. 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)
  610. 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)
  611. 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)
  612. game:GetService("RunService").RenderStepped:wait()
  613. end
  614. local punchclone = punch:Clone()
  615. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  616. punchclone:Play()
  617.  
  618. for i = 0,1 , 0.4 do
  619. 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)
  620. 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)
  621. 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)
  622. 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)
  623. 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)
  624. 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)
  625. game:GetService("RunService").RenderStepped:wait()
  626. end
  627. local punchclone = punch:Clone()
  628. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  629. punchclone:Play()
  630.  
  631. end
  632. armcanattack = false
  633. canwalk = true
  634. using = false
  635. humanoid.Parent:BreakJoints()
  636. local boom = Instance.new("Explosion", workspace)
  637. boom.Position = humanoid.Parent.Torso.Position
  638. boom.BlastRadius = 0.5
  639. local hitoof = Instance.new("Sound", humanoid.Parent.Head)
  640. hitoof.SoundId = "rbxassetid://771324077"
  641. hitoof.Volume = 3
  642. hitoof.TimePosition = 5.1
  643. hitoof:Play()
  644. local explosion = Instance.new("Sound", humanoid.Parent.Head)
  645. explosion.SoundId = "rbxassetid://130803364"
  646. explosion.Volume = 10
  647. explosion:Play()
  648. wait(1.5)
  649. explosion:Stop()
  650. hitoof:Stop()
  651. end
  652. end
  653. game.Players.LocalPlayer.Character["Right Arm"].Touched:connect(touched)
  654. armcanattack = false
  655. canwalk = true
  656. using = false
  657. end
  658. end
  659. mouse.KeyDown:connect(attacc)
  660. function kickthefurfag(key)
  661. if key == "g" and not using then
  662. using = true
  663. canwalk = false
  664. hittd = false
  665. local sensoryee1 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Leg"])
  666. sensoryee1.Size = Vector3.new(1,1,1)
  667. sensoryee1.CanCollide = false
  668. sensoryee1.Transparency = 0
  669. sensoryee1:BreakJoints()
  670. local weldsensor = Instance.new("Weld", sensoryee1)
  671. weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
  672. weldsensor.Part1 = sensoryee1
  673. weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
  674. local function kicked(part)
  675. sensoryee1:destroy()
  676. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  677. if humanoid then
  678. --canbefps = true
  679. hittd = true
  680. humanoid.WalkSpeed = 0
  681. humanoid.JumpPower = 0
  682. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
  683. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0
  684. punch:Play()
  685. wait(0.5)
  686. for i = 0,1 , 0.05 do
  687. 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)
  688. 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)
  689. 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)
  690. 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)
  691. 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)
  692. 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)
  693. game:GetService("RunService").RenderStepped:wait()
  694. end
  695. humanoid.Parent.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,0,-3)
  696. humanoid.Parent.Torso.CFrame = CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position)
  697. wait(0.3)
  698. for i = 0,1 , 0.07 do
  699. 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)
  700. 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)
  701. 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)
  702. 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)
  703. 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)
  704. 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)
  705. game:GetService("RunService").RenderStepped:wait()
  706. end
  707. humanoid.Parent.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,0,-4)
  708. humanoid.Parent.Torso.CFrame = CFrame.new(humanoid.Parent.Torso.Position,game.Players.LocalPlayer.Character.Torso.Position)
  709. --local rhandclonefur = humanoid.Parent.Torso["Right Shoulder"]:Clone()
  710. local rhandweldfur = Instance.new("Weld", humanoid.Parent.Torso)
  711. rhandweldfur.Part0 = humanoid.Parent.Torso
  712. rhandweldfur.Part1 = humanoid.Parent["Right Arm"]
  713. rhandweldfur.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  714. local lhandweldfur = Instance.new("Weld", humanoid.Parent.Torso)
  715. lhandweldfur.Part0 = humanoid.Parent.Torso
  716. lhandweldfur.Part1 = humanoid.Parent["Left Arm"]
  717. lhandweldfur.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  718. --local llegclone = humanoid.Parent.Torso["Left Hip"]:Clone()
  719. local llegweldfur = Instance.new("Weld", humanoid.Parent.Torso)
  720. llegweldfur.Part0 = humanoid.Parent.Torso
  721. llegweldfur.Part1 = humanoid.Parent["Left Leg"]
  722. llegweldfur.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  723. --local rlegclone = humanoid.Parent.Torso["Right Hip"]:Clone()
  724. local rlegweldfur = Instance.new("Weld", humanoid.Parent.Torso)
  725. rlegweldfur.Part0 = humanoid.Parent.Torso
  726. rlegweldfur.Part1 = humanoid.Parent["Right Leg"]
  727. rlegweldfur.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  728. --local rootjointclone = humanoid.Parent.HumanoidRootPart.RootJoint:Clone()
  729. local humanoidrootpartfur = Instance.new("Weld", humanoid.Parent.Torso)
  730. humanoidrootpartfur.Part0 = humanoid.Parent.HumanoidRootPart
  731. humanoidrootpartfur.Part1 = humanoid.Parent.Torso
  732. --local heed = humanoid.Parent.Torso["Neck"]:Clone()
  733. local headweldfur = Instance.new("Weld", humanoid.Parent.Torso)
  734. headweldfur.Part0 = humanoid.Parent.Torso
  735. headweldfur.Part1 = humanoid.Parent.Head
  736. headweldfur.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  737. for i = 0,0.7 , 0.07 do
  738. 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)
  739. 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)
  740. 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)
  741. 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)
  742. 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)
  743. 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)
  744. game:GetService("RunService").RenderStepped:wait()
  745. end
  746. for i = 0,1 , 0.04 do
  747. 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)
  748. 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)
  749. 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)
  750. 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)
  751. 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)
  752. 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)
  753. game:GetService("RunService").RenderStepped:wait()
  754. end
  755. for i = 0,0.8 , 0.1 do
  756. 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)
  757. 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)
  758. 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)
  759. 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)
  760. 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)
  761. 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)
  762. game:GetService("RunService").RenderStepped:wait()
  763. end
  764. punch:Play()
  765. for i = 0,0.7 , 0.07 do
  766. 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)
  767. 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)
  768. 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)
  769. 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)
  770. 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)
  771. 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)
  772. game:GetService("RunService").RenderStepped:wait()
  773. end
  774. for i = 0,1 , 0.04 do
  775. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  776. 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)
  777. 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)
  778. 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)
  779. 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)
  780. 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)
  781. game:GetService("RunService").RenderStepped:wait()
  782. end
  783. --Converted with ttyyuu12345's model to script plugin v4
  784. function sandbox(var,func)
  785. local env = getfenv(func)
  786. local newenv = setmetatable({},{
  787. __index = function(self,k)
  788. if k=="script" then
  789. return var
  790. else
  791. return env[k]
  792. end
  793. end,
  794. })
  795. setfenv(func,newenv)
  796. return func
  797. end
  798. cors = {}
  799. mas = Instance.new("Model",game:GetService("Lighting"))
  800. Part0 = Instance.new("Part")
  801. SpecialMesh1 = Instance.new("SpecialMesh")
  802. Part0.Parent = mas
  803. Part0.Rotation = Vector3.new(0, -90, 0)
  804. Part0.Size = Vector3.new(1.77999985, 0.590000093, 0.520000041)
  805. 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)
  806. Part0.Position = Vector3.new(8.2007246, 1.93281543, 34.3707199)
  807. Part0.Orientation = Vector3.new(0, -90, 0)
  808. Part0.CanCollide = false
  809. SpecialMesh1.Parent = Part0
  810. SpecialMesh1.MeshId = "rbxassetid://442337985"
  811. SpecialMesh1.Scale = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  812. SpecialMesh1.TextureId = "rbxassetid://442337993"
  813. SpecialMesh1.MeshType = Enum.MeshType.FileMesh
  814. SpecialMesh1.Scale = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  815. for i,v in pairs(mas:GetChildren()) do
  816. v.Parent = game:GetService("Players").LocalPlayer.Character
  817. pcall(function() v:MakeJoints() end)
  818. end
  819. mas:Destroy()
  820. for i,v in pairs(cors) do
  821. spawn(function()
  822. pcall(v)
  823. end)
  824. end
  825. Part0:BreakJoints()
  826. local welddl = Instance.new("Weld", Part0)
  827. welddl.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  828. welddl.Part1 = Part0
  829. 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)
  830. for i = 0,1 , 0.02 do
  831. 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)
  832. 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)
  833. --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)
  834. 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)
  835. 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)
  836. 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)
  837. game:GetService("RunService").RenderStepped:wait()
  838. end
  839. for i = 0,0.8 , 0.1 do
  840. 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)
  841. 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)
  842. 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)
  843. 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)
  844. 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)
  845. 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)
  846. 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)
  847. game:GetService("RunService").RenderStepped:wait()
  848. end
  849. humanoid.PlatformStand = true
  850. humanoid.JumpPower = 0
  851. humanoid.WalkSpeed = 0
  852. for i,v in pairs(humanoid.Parent.Torso:GetChildren()) do
  853. if v.ClassName == "Weld" then
  854. v:destroy()
  855. end
  856. end
  857. canwalk = true
  858. canbefps = false
  859. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
  860. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  861. using = false
  862. Part0:Destroy()
  863. if humanoid.Parent:findFirstChild("Health") then
  864. humanoid.Parent.Health:Remove()
  865. humanoid.Health = 0.001
  866. for i,v in pairs(humanoid.Parent:GetChildren()) do
  867. if v.ClassName == "Part" then
  868. for q,w in pairs(v:GetChildren()) do
  869. if w.ClassName == "Part" then
  870. w:destroy()
  871. end
  872. end
  873. end
  874. end
  875. end
  876. if humanoid.Parent:findFirstChild("Torso") then
  877. humanoid.Parent.Torso.Velocity = mouse.Hit.lookVector * 35
  878. for i,v in pairs(humanoid.Parent.Torso:GetChildren()) do
  879. if v.ClassName == "Motor6D" then
  880. if v.Name == "Neck" then
  881.  
  882. else
  883. v:destroy()
  884. end
  885. end
  886. end
  887. end
  888. humanoid.WalkSpeed = 0
  889. humanoid.JumpPower = 0
  890. humanoid.Health = 0
  891. if humanoid.Parent:findFirstChild("Right Arm") then
  892. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  893. attachment.Position = Vector3.new(1, 1, 0)
  894. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  895. ball.Attachment0 = humanoid.Parent["Right Arm"].RightShoulderAttachment
  896. ball.Attachment1 = attachment
  897. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  898. collidepartofleftleg.Name = "Bone"
  899. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  900. collidepartofleftleg.Transparency = 1
  901. collidepartofleftleg:BreakJoints()
  902. local weeld = Instance.new("Weld", collidepartofleftleg)
  903. weeld.Part0 = humanoid.Parent["Right Arm"]
  904. weeld.Part1 = collidepartofleftleg
  905. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  906. end
  907. if humanoid.Parent:findFirstChild("Left Arm") then
  908. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  909. attachment.Position = Vector3.new(1, 1, 0)
  910. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  911. ball.Attachment0 = humanoid.Parent.Torso.LeftCollarAttachment
  912. ball.Attachment1 = humanoid.Parent["Left Arm"].LeftShoulderAttachment
  913. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  914. collidepartofleftleg.Name = "Bone"
  915. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  916. collidepartofleftleg.Transparency = 1
  917. collidepartofleftleg:BreakJoints()
  918. local weeld = Instance.new("Weld", collidepartofleftleg)
  919. weeld.Part0 = humanoid.Parent["Left Arm"]
  920. weeld.Part1 = collidepartofleftleg
  921. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  922. end
  923. if humanoid.Parent:findFirstChild("Right Leg") then
  924. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  925. attachment.Position = Vector3.new(0.5, -1, 0)
  926. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  927. ball.Attachment0 = humanoid.Parent["Right Leg"].RightFootAttachment
  928. ball.Attachment1 = attachment
  929. humanoid.Parent["Right Leg"].RightFootAttachment.Position = Vector3.new(0, 1, 0)
  930. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  931. collidepartofleftleg.Name = "Bone"
  932. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  933. collidepartofleftleg.Transparency = 1
  934. collidepartofleftleg:BreakJoints()
  935. local weeld = Instance.new("Weld", collidepartofleftleg)
  936. weeld.Part0 = humanoid.Parent["Right Leg"]
  937. weeld.Part1 = collidepartofleftleg
  938. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  939. end
  940. if humanoid.Parent:findFirstChild("Left Leg") then
  941. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  942. attachment.Position = Vector3.new(-0.5, -1, 0)
  943. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  944. ball.Attachment0 = humanoid.Parent["Left Leg"].LeftFootAttachment
  945. ball.Attachment1 = attachment
  946. humanoid.Parent["Left Leg"].LeftFootAttachment.Position = Vector3.new(0, 1, 0)
  947. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  948. collidepartofleftleg.Name = "Bone"
  949. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  950. collidepartofleftleg.Transparency = 1
  951. collidepartofleftleg:BreakJoints()
  952. local weeld = Instance.new("Weld", collidepartofleftleg)
  953. weeld.Part0 = humanoid.Parent["Left Leg"]
  954. weeld.Part1 = collidepartofleftleg
  955. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  956. end
  957. if humanoid.Parent:findFirstChild("Head") then
  958. local attachment = Instance.new("Attachment", humanoid.Parent.Head)
  959. attachment.Position = Vector3.new(0, -0.5, 0)
  960. humanoid.Parent.Torso.NeckAttachment.Visible = false
  961. humanoid.Parent.Torso.NeckAttachment.Position = humanoid.Parent.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
  962. local ball = Instance.new("HingeConstraint", humanoid.Parent)
  963. ball.Attachment0 = humanoid.Parent.Torso.NeckAttachment
  964. ball.Attachment1 = attachment
  965. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  966. collidepartofleftleg.Name = "Bone"
  967. collidepartofleftleg.Size = Vector3.new(0.5,0.3,0.5)
  968. collidepartofleftleg.Transparency = 1
  969. collidepartofleftleg:BreakJoints()
  970. local weeld = Instance.new("Weld", collidepartofleftleg)
  971. weeld.Part0 = collidepartofleftleg
  972. weeld.Part1 = humanoid.Parent["Head"]
  973. if humanoid.Parent.Torso:findFirstChild("Neck") then
  974. humanoid.Parent.Torso.Neck:destroy()
  975. end
  976. end
  977. end
  978. end
  979. sensoryee1.Touched:connect(kicked)
  980. for i = 0,1 , 0.08 do
  981. 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)
  982. 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)
  983. 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)
  984. 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)
  985. 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)
  986. 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)
  987. game:GetService("RunService").RenderStepped:wait()
  988. end
  989. wait(0.2)
  990. sensoryee1:destroy()
  991. if not hittd then
  992. using = false
  993. canwalk = true
  994. end
  995. end
  996. end
  997. mouse.KeyDown:connect(kickthefurfag)
  998. function begone(key)
  999. key = key:lower()
  1000. if key == "y" and not using then
  1001. using = true
  1002. canwalk = false
  1003. local fuckingnormies = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  1004. fuckingnormies.SoundId = "rbxassetid://854345294"
  1005. fuckingnormies.TimePosition = 2
  1006. fuckingnormies.Volume = 10
  1007. fuckingnormies:Play()
  1008. for i = 0,1 , 0.02 do
  1009. 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)
  1010. 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)
  1011. 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)
  1012. 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)
  1013. 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)
  1014. 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)
  1015. game:GetService("RunService").RenderStepped:wait()
  1016. end
  1017. wait(1)
  1018. for i = 0,1 , 0.1 do
  1019. 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)
  1020. 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)
  1021. 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)
  1022. 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)
  1023. 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)
  1024. 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)
  1025. game:GetService("RunService").RenderStepped:wait()
  1026. end
  1027. meme:Play()
  1028. meme.Volume = 6
  1029. thunder.TimePosition = 0.4
  1030. thunder:Play()
  1031. thunder.Volume = 6
  1032. --Converted with ttyyuu12345's model to script plugin v4
  1033. function sandbox(var,func)
  1034. local env = getfenv(func)
  1035. local newenv = setmetatable({},{
  1036. __index = function(self,k)
  1037. if k=="script" then
  1038. return var
  1039. else
  1040. return env[k]
  1041. end
  1042. end,
  1043. })
  1044. setfenv(func,newenv)
  1045. return func
  1046. end
  1047. cors = {}
  1048. mas = Instance.new("Model",game:GetService("Lighting"))
  1049. Model0 = Instance.new("Model")
  1050. Part1 = Instance.new("Part")
  1051. Part2 = Instance.new("Part")
  1052. Model0.Name = "Beam"
  1053. Model0.Parent = mas
  1054. Part1.Name = "beemblue"
  1055. Part1.Parent = Model0
  1056. Part1.Material = Enum.Material.Neon
  1057. Part1.BrickColor = BrickColor.new("Cyan")
  1058. Part1.Transparency = 0
  1059. Part1.Shape = Enum.PartType.Cylinder
  1060. Part1.Size = Vector3.new(0.0500000007, 3.96000385, 3.96000171)
  1061. Part1.CFrame = CFrame.new(40.7978516, 2.43296385, 64.2700119, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1062. Part1.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  1063. Part1.Position = Vector3.new(40.7978516, 2.43296385, 64.2700119)
  1064. Part1.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  1065. Part2.Name = "beem"
  1066. Part2.Parent = Model0
  1067. Part2.Material = Enum.Material.Neon
  1068. Part2.BrickColor = BrickColor.new("Institutional white")
  1069. Part2.Transparency = 0
  1070. Part2.Shape = Enum.PartType.Cylinder
  1071. Part2.Size = Vector3.new(0.0500000007, 3.96000385, 3.96000171)
  1072. Part2.CFrame = CFrame.new(40.7682838, 2.43296385, 64.2700119, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1073. Part2.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1074. Part2.Position = Vector3.new(40.7682838, 2.43296385, 64.2700119)
  1075. Part2.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1076. for i,v in pairs(mas:GetChildren()) do
  1077. v.Parent = game:GetService("Players").LocalPlayer.Character
  1078. pcall(function() v:MakeJoints() end)
  1079. end
  1080. mas:Destroy()
  1081. for i,v in pairs(cors) do
  1082. spawn(function()
  1083. pcall(v)
  1084. end)
  1085. end
  1086. Part1.Anchored = true
  1087. Part2.Anchored = true
  1088. Part1.CanCollide = false
  1089. Part2.CanCollide = false
  1090. local canrag = true
  1091. Part1.CFrame = game.Players.LocalPlayer.Character.Head.CFrame * CFrame.new(0,0,-5) * CFrame.fromEulerAnglesXYZ(0,math.pi/2,0)
  1092. local function ragdolldafurfag(part)
  1093. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  1094. local ragdolled = part.Parent:findFirstChild("ragdolled")
  1095. if humanoid then
  1096. if humanoid.Parent.Name == game.Players.LocalPlayer.Name then
  1097. --nothing
  1098. else
  1099. if ragdolled then
  1100. --nothing again
  1101. else
  1102. local raggd = Instance.new("BoolValue", humanoid.Parent)
  1103. raggd.Name = "ragdolled"
  1104. humanoid.Name = "memes"
  1105. humanoid.PlatformStand = true
  1106. humanoid.JumpPower = 0
  1107. humanoid.WalkSpeed = 0
  1108. local findlefthip = humanoid.Parent.Torso:findFirstChild("Left Hip")
  1109. if findlefthip then
  1110. findlefthip:Remove()
  1111. local glue = Instance.new("Glue", humanoid.Parent.Torso)
  1112. glue.Part0 = humanoid.Parent.Torso
  1113. glue.Part1 = humanoid.Parent["Left Leg"]
  1114. glue.Name = "Left leg"
  1115. local collider = Instance.new("Part", humanoid.Parent["Left Leg"])
  1116. collider.Position = Vector3.new(0,999,0)
  1117. collider.Size = Vector3.new(1.5, 1, 1)
  1118. collider.Shape = "Cylinder"
  1119. local weld = Instance.new("Weld", collider)
  1120. weld.Part0 = humanoid.Parent["Left Leg"]
  1121. weld.Part1 = collider
  1122. weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  1123. collider.TopSurface = "Smooth"
  1124. collider.BottomSurface = "Smooth"
  1125. collider.formFactor = "Symmetric"
  1126. glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1127. glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  1128. collider.Transparency = 1
  1129. end
  1130. --
  1131. local findrighthip = humanoid.Parent.Torso:findFirstChild("Right Hip")
  1132. if findrighthip then
  1133. findrighthip:Remove()
  1134. local glue = Instance.new("Glue", humanoid.Parent.Torso)
  1135. glue.Part0 = humanoid.Parent.Torso
  1136. glue.Part1 = humanoid.Parent["Right Leg"]
  1137. glue.Name = "Right leg"
  1138. local collider = Instance.new("Part", humanoid.Parent["Right Leg"])
  1139. collider.Position = Vector3.new(0,999,0)
  1140. collider.Size = Vector3.new(1.5, 1, 1)
  1141. collider.Shape = "Cylinder"
  1142. local weld = Instance.new("Weld", collider)
  1143. weld.Part0 = humanoid.Parent["Right Leg"]
  1144. weld.Part1 = collider
  1145. weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  1146. collider.TopSurface = "Smooth"
  1147. collider.BottomSurface = "Smooth"
  1148. collider.formFactor = "Symmetric"
  1149. glue.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1150. glue.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  1151. collider.Transparency = 1
  1152. end
  1153. --
  1154. local findrightshoulder = humanoid.Parent.Torso:findFirstChild("Right Shoulder")
  1155. if findrightshoulder then
  1156. findrightshoulder:Remove()
  1157. local glue = Instance.new("Glue", humanoid.Parent.Torso)
  1158. glue.Part0 = humanoid.Parent.Torso
  1159. glue.Part1 = humanoid.Parent["Right Arm"]
  1160. glue.Name = "Right arm"
  1161. local collider = Instance.new("Part", humanoid.Parent["Right Arm"])
  1162. collider.Position = Vector3.new(0,999,0)
  1163. collider.Size = Vector3.new(1.5, 1, 1)
  1164. collider.Shape = "Cylinder"
  1165. local weld = Instance.new("Weld", collider)
  1166. weld.Part0 = humanoid.Parent["Right Arm"]
  1167. weld.Part1 = collider
  1168. weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  1169. collider.TopSurface = "Smooth"
  1170. collider.BottomSurface = "Smooth"
  1171. collider.formFactor = "Symmetric"
  1172. glue.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1173. glue.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1174. collider.Transparency = 1
  1175. end
  1176. --
  1177. local findleftshoulder = humanoid.Parent.Torso:findFirstChild("Left Shoulder")
  1178. if findleftshoulder then
  1179. findleftshoulder:Remove()
  1180. local glue = Instance.new("Glue", humanoid.Parent.Torso)
  1181. glue.Part0 = humanoid.Parent.Torso
  1182. glue.Part1 = humanoid.Parent["Left Arm"]
  1183. glue.Name = "Left arm"
  1184. local collider = Instance.new("Part", humanoid.Parent["Left Arm"])
  1185. collider.Position = Vector3.new(0,999,0)
  1186. collider.Size = Vector3.new(1.5, 1, 1)
  1187. collider.Shape = "Cylinder"
  1188. local weld = Instance.new("Weld", collider)
  1189. weld.Part0 = humanoid.Parent["Left Arm"]
  1190. weld.Part1 = collider
  1191. weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  1192. collider.TopSurface = "Smooth"
  1193. collider.BottomSurface = "Smooth"
  1194. collider.formFactor = "Symmetric"
  1195. glue.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1196. glue.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1197. collider.Transparency = 1
  1198. end
  1199. if humanoid.Parent:findFirstChild("Head") then
  1200. local attachment = Instance.new("Attachment", humanoid.Parent.Head)
  1201. attachment.Position = Vector3.new(0, -0.5, 0)
  1202. humanoid.Parent.Torso.NeckAttachment.Visible = false
  1203. humanoid.Parent.Torso.NeckAttachment.Position = humanoid.Parent.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
  1204. local ball = Instance.new("HingeConstraint", humanoid.Parent)
  1205. ball.Attachment0 = humanoid.Parent.Torso.NeckAttachment
  1206. ball.Attachment1 = attachment
  1207. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  1208. collidepartofleftleg.Name = "Bone"
  1209. collidepartofleftleg.Size = Vector3.new(0.5,0.3,0.5)
  1210. collidepartofleftleg.Transparency = 1
  1211. collidepartofleftleg:BreakJoints()
  1212. local weeld = Instance.new("Weld", collidepartofleftleg)
  1213. weeld.Part0 = collidepartofleftleg
  1214. weeld.Part1 = humanoid.Parent["Head"]
  1215. if humanoid.Parent.Torso:findFirstChild("Neck") then
  1216. humanoid.Parent.Torso.Neck:destroy()
  1217. end
  1218. end
  1219. end
  1220. end
  1221. end
  1222. end
  1223. Part1.Touched:connect(ragdolldafurfag)
  1224. local function changeposandsize()
  1225. for i = 1,200 do
  1226. Part1.Size = Part1.Size + Vector3.new(0.9,0.2,0.1)
  1227. Part2.Size = Part2.Size + Vector3.new(0.9,0.2,0.1)
  1228. Part1.CFrame = Part1.CFrame * CFrame.new(0.7,0,0)
  1229. Part2.CFrame = Part1.CFrame * CFrame.new(0.7,0,0)
  1230. Part1.Transparency = Part1.Transparency + 0.007
  1231. Part2.Transparency = Part2.Transparency + 0.007
  1232. game:GetService("RunService").RenderStepped:wait()
  1233. end
  1234. Model0:destroy()
  1235. end
  1236. changeposandsize()
  1237. armcanattack = false
  1238. canwalk = true
  1239. using = false
  1240. end
  1241. end
  1242. mouse.KeyDown:connect(begone)
  1243. --Converted with ttyyuu12345's model to script plugin v4
  1244. function sandbox(var,func)
  1245. local env = getfenv(func)
  1246. local newenv = setmetatable({},{
  1247. __index = function(self,k)
  1248. if k=="script" then
  1249. return var
  1250. else
  1251. return env[k]
  1252. end
  1253. end,
  1254. })
  1255. setfenv(func,newenv)
  1256. return func
  1257. end
  1258. cors = {}
  1259. mas = Instance.new("Model",game:GetService("Lighting"))
  1260. Soundo0 = Instance.new("Sound")
  1261. Soundo0.Parent = mas
  1262. Soundo0.SoundId = "rbxassetid://1206917308"
  1263. Soundo0.Volume = 10
  1264. Soundo0.PlaybackSpeed = 1
  1265. Soundo0.Looped = true
  1266. for i,v in pairs(mas:GetChildren()) do
  1267. v.Parent = game:GetService("Players").LocalPlayer.Character.Torso
  1268. pcall(function() v:MakeJoints() end)
  1269. end
  1270. mas:Destroy()
  1271. for i,v in pairs(cors) do
  1272. spawn(function()
  1273. pcall(v)
  1274. end)
  1275. end
  1276. function kysfurshit(key)
  1277. key = key:lower()
  1278. if key == "q" and not using then
  1279. using = true
  1280. hittd = false
  1281. canwalk = false
  1282. local canscan = true
  1283. textfag.Text = "fox faggotz"
  1284. for i = 0,1 , 0.04 do
  1285. 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)
  1286. 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)
  1287. 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)
  1288. 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)
  1289. game:GetService("RunService").RenderStepped:wait()
  1290. end
  1291. local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
  1292. sensoryee.Size = Vector3.new(1,1,1)
  1293. sensoryee.CanCollide = false
  1294. sensoryee.Transparency = 0
  1295. sensoryee:BreakJoints()
  1296. local weldsensor = Instance.new("Weld", sensoryee)
  1297. weldsensor.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1298. weldsensor.Part1 = sensoryee
  1299. weldsensor.C0 = weldsensor.C0 * CFrame.new(0,-0.5,0)
  1300. local function hagotem(part)
  1301. sensoryee:destroy()
  1302. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  1303. if humanoid then
  1304. local canscan = true
  1305. for i,v in pairs(humanoid.Parent:GetChildren()) do
  1306. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1307. if v:findFirstChild("Handle") then
  1308. if v.Handle:findFirstChild("Mesh") then
  1309. 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
  1310. canscan = false
  1311. hittd = true
  1312. --canbefps = true
  1313. local furfaggrowl = Instance.new("Sound", humanoid.Parent.Head)
  1314. furfaggrowl.SoundId = "rbxassetid://133322522"
  1315. furfaggrowl.Volume = 10
  1316. local rip = Instance.new("Sound", humanoid.Parent.Head)
  1317. rip.SoundId = "rbxassetid://132514715"
  1318. rip.Volume = 10
  1319. if humanoid.Parent:findFirstChild("HumanoidRootPart") then
  1320. humanoid.Parent.HumanoidRootPart:destroy()
  1321. humanoid.WalkSpeed = 0
  1322. humanoid.JumpPower = 0
  1323. else
  1324. humanoid.PlatformStand = true
  1325. humanoid.JumpPower = 0
  1326. humanoid.WalkSpeed = 0
  1327. end
  1328. textfag.Text = "die from cancer"
  1329. local headfurfagweld = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  1330. headfurfagweld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  1331. headfurfagweld.Part1 = humanoid.Parent.Head
  1332. 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)
  1333. furfaggrowl:Play()
  1334. furfaggrowl.TimePosition = 1
  1335. wait(1)
  1336. for i = 0,1 , 0.04 do
  1337. 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)
  1338. game:GetService("RunService").RenderStepped:wait()
  1339. end
  1340. wait(1.4)
  1341. for i = 1,6 do
  1342. wait(0.1)
  1343. for i = 0,1 , 0.15 do
  1344. 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)
  1345. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1346. 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)
  1347. 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)
  1348. 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)
  1349. 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)
  1350. game:GetService("RunService").RenderStepped:wait()
  1351. end
  1352. for i = 0,1 , 0.15 do
  1353. 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)
  1354. 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)
  1355. 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)
  1356. 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)
  1357. 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)
  1358. 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)
  1359. game:GetService("RunService").RenderStepped:wait()
  1360. end
  1361. local punchclone = punch:Clone()
  1362. punchclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  1363. punchclone:Play()
  1364. end
  1365. local goreclone = gore:Clone()
  1366. goreclone.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  1367. goreclone:Play()
  1368. for i,v in pairs(humanoid.Parent:GetChildren()) do
  1369. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1370. v:destroy()
  1371. end
  1372. if v.Name == "Head" then
  1373. v.Transparency = 1
  1374. end
  1375. end
  1376. if humanoid.Parent.Head:findFirstChild("face") then
  1377. humanoid.Parent.Head.face.Transparency = 1
  1378. end
  1379. for i = 1,math.random(10,15) do
  1380. --Converted with ttyyuu12345's model to script plugin v4
  1381. function sandbox(var,func)
  1382. local env = getfenv(func)
  1383. local newenv = setmetatable({},{
  1384. __index = function(self,k)
  1385. if k=="script" then
  1386. return var
  1387. else
  1388. return env[k]
  1389. end
  1390. end,
  1391. })
  1392. setfenv(func,newenv)
  1393. return func
  1394. end
  1395. cors = {}
  1396. mas = Instance.new("Model",game:GetService("Lighting"))
  1397. local Part0 = Instance.new("Part")
  1398. Part0.Name = "bl00d"
  1399. Part0.Parent = mas
  1400. Part0.Material = Enum.Material.SmoothPlastic
  1401. Part0.BrickColor = BrickColor.new("Maroon")
  1402. Part0.Size = Vector3.new(1.16000009, 0.0500000007, 1.12000048)
  1403. Part0.CFrame = CFrame.new(17.569994, 1.14527643, 34.9399986, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1404. Part0.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. Part0.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. Part0.Color = Color3.new(0.458824, 0, 0)
  1407. Part0.Position = Vector3.new(17.569994, 1.14527643, 34.9399986)
  1408. Part0.Color = Color3.new(0.458824, 0, 0)
  1409. Part0.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1410. Part0:BreakJoints()
  1411. for i,v in pairs(mas:GetChildren()) do
  1412. v.Parent = humanoid.Parent
  1413. pcall(function() v:MakeJoints() end)
  1414. end
  1415. mas:Destroy()
  1416. for i,v in pairs(cors) do
  1417. spawn(function()
  1418. pcall(v)
  1419. end)
  1420. end
  1421. end
  1422. wait(1)
  1423. for i = 0,1 , 0.05 do
  1424. 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)
  1425. 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)
  1426. 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)
  1427. 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)
  1428. 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)
  1429. 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)
  1430. game:GetService("RunService").RenderStepped:wait()
  1431. end
  1432. wait(0.2)
  1433. furfaggrowl:destroy()
  1434. headfurfagweld:destroy()
  1435. local vel = Instance.new("BodyVelocity", humanoid.Parent.Torso)
  1436. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1437. vel.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.rightVector * -math.random(400,469) + Vector3.new(0,2,0)
  1438. rip:Play()
  1439. for i = 0,1 , 0.06 do
  1440. 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)
  1441. 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)
  1442. 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)
  1443. 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)
  1444. game:GetService("RunService").RenderStepped:wait()
  1445. end
  1446. wait(1)
  1447. for i = 0,0.3 , 0.004 do
  1448. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1449. 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)
  1450. 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)
  1451. 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)
  1452. 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)
  1453. 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)
  1454. game:GetService("RunService").RenderStepped:wait()
  1455. end
  1456. using = false
  1457. canwalk = true
  1458. end
  1459. end
  1460. end
  1461. end
  1462. end
  1463. end
  1464. end
  1465. sensoryee.Touched:connect(hagotem)
  1466. for i = 0,1 , 0.04 do
  1467. 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)
  1468. 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)
  1469. 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)
  1470. 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)
  1471. game:GetService("RunService").RenderStepped:wait()
  1472. end
  1473. sensoryee:destroy()
  1474. if not hittd then
  1475. for i = 0,0.3 , 0.004 do
  1476. if canwalk and howmuch < 1 then
  1477. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1478. 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)
  1479. 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)
  1480. 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)
  1481. 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)
  1482. 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)
  1483. game:GetService("RunService").RenderStepped:wait()
  1484. end
  1485. end
  1486. using = false
  1487. canwalk = true
  1488. end
  1489. textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
  1490. end
  1491. end
  1492. mouse.KeyDown:connect(kysfurshit)
  1493.  
  1494. dancing = false
  1495. function switch(key)
  1496. key = key:lower()
  1497. if key == "m" then
  1498. if not dancing then
  1499. dancing = true
  1500. canwalk = false
  1501. Sound0:Stop()
  1502. Soundo0:Play()
  1503. while dancing do
  1504. for i = 0.3,0.46 , 0.015 do
  1505. if dancing then
  1506. 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)
  1507. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.965696573, 0.259673119, 0, -0.259673119, 0.965696573),i)
  1508. 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)
  1509. 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)
  1510. 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)
  1511. 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)
  1512. game:GetService("RunService").RenderStepped:wait()
  1513. end
  1514. end
  1515. for i = 0.35,0.4 , 0.025 do
  1516. if dancing then
  1517. 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)
  1518. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.996428847, -0.0844366103, 0, 0.0844366103, 0.996428847),i)
  1519. 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)
  1520. 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)
  1521. 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)
  1522. 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)
  1523. game:GetService("RunService").RenderStepped:wait()
  1524. end
  1525. end
  1526. for i = 0.3,0.46 , 0.015 do
  1527. if dancing then
  1528. 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)
  1529. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.980066657, -0.198668674, 0, 0.198668674, 0.980066657),i)
  1530. 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)
  1531. 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)
  1532. 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)
  1533. 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)
  1534. game:GetService("RunService").RenderStepped:wait()
  1535. end
  1536. end
  1537. for i = 0.35,0.4 , 0.025 do
  1538. if dancing then
  1539. 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)
  1540. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.996428847, -0.0844366103, 0, 0.0844366103, 0.996428847),i)
  1541. 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)
  1542. 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)
  1543. 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)
  1544. 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)
  1545. game:GetService("RunService").RenderStepped:wait()
  1546. end
  1547. end
  1548. end
  1549. else
  1550. Soundo0:Stop()
  1551. Sound0:Play()
  1552. dancing = false
  1553. canwalk = true
  1554. end
  1555. end
  1556. end
  1557. mouse.KeyDown:connect(switch)
  1558. function dontremove()
  1559. if Soundo0.Parent == nil then
  1560. Soundo0.Parent = game.Players.LocalPlayer.Character.Torso
  1561. end
  1562. end
  1563. game:GetService("RunService").RenderStepped:connect(dontremove)
  1564. function cancerify()
  1565. local hum = mouse.Target.Parent:findFirstChild("Humanoid")
  1566. if hum then
  1567. if hum.Parent.Name == "Rufus14" then
  1568.  
  1569. else
  1570. textfag.Text = "get cancer"
  1571. --Converted with ttyyuu12345's model to script plugin v4
  1572. function sandbox(var,func)
  1573. local env = getfenv(func)
  1574. local newenv = setmetatable({},{
  1575. __index = function(self,k)
  1576. if k=="script" then
  1577. return var
  1578. else
  1579. return env[k]
  1580. end
  1581. end,
  1582. })
  1583. setfenv(func,newenv)
  1584. return func
  1585. end
  1586. cors = {}
  1587. mas = Instance.new("Model",game:GetService("Lighting"))
  1588. local Accessory0 = Instance.new("Accessory")
  1589. Part1 = Instance.new("Part")
  1590. local SpecialMesh2 = Instance.new("SpecialMesh")
  1591. Accessory0.Name = "Cancer"
  1592. Accessory0.Parent = mas
  1593. Part1.Name = "Handle"
  1594. Part1.Parent = Accessory0
  1595. Part1.Rotation = Vector3.new(0, 0, 0.0199999996)
  1596. Part1.FormFactor = Enum.FormFactor.Custom
  1597. Part1.Size = Vector3.new(1.25000024, 1.12999988, 1.1400001)
  1598. Part1.CFrame = CFrame.new(113.104767, 31.6558571, -259.307831, 1, -0.000407999993, 0, 0.000407999993, 1, 0, 0, 0, 1)
  1599. Part1.BottomSurface = Enum.SurfaceType.Smooth
  1600. Part1.TopSurface = Enum.SurfaceType.Smooth
  1601. Part1.Position = Vector3.new(113.104767, 31.6558571, -259.307831)
  1602. Part1.Orientation = Vector3.new(0, 0, 0.0199999996)
  1603. SpecialMesh2.Parent = Part1
  1604. SpecialMesh2.MeshId = "rbxassetid://361948302"
  1605. SpecialMesh2.Scale = Vector3.new(0.5, 0.5, 0.5)
  1606. SpecialMesh2.TextureId = "http://www.roblox.com/asset/?id=361948503 "
  1607. SpecialMesh2.MeshType = Enum.MeshType.FileMesh
  1608. SpecialMesh2.Scale = Vector3.new(0.5, 0.5, 0.5)
  1609. for i,v in pairs(mas:GetChildren()) do
  1610. v.Parent = hum.Parent
  1611. pcall(function() v:MakeJoints() end)
  1612. end
  1613. mas:Destroy()
  1614. for i,v in pairs(cors) do
  1615. spawn(function()
  1616. pcall(v)
  1617. end)
  1618. end
  1619. wait(1.5)
  1620. textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
  1621. end
  1622. end
  1623. end
  1624. mouse.Button1Down:connect(cancerify)
  1625. function attackflag(key)
  1626. if key == "e" and not using then
  1627. using = true
  1628. canwalk = false
  1629. textfag.Text = "go back to forest"
  1630. local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
  1631. sensoryee2.Size = Vector3.new(1, 1, 1)
  1632. sensoryee2.CanCollide = false
  1633. sensoryee2.Transparency = 0
  1634. sensoryee2:BreakJoints()
  1635. local weldsensor = Instance.new("Weld", sensoryee2)
  1636. weldsensor.Part0 = sensoryee2
  1637. weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  1638. weldsensor.C0 = CFrame.new(0,0.5,0)
  1639. local function hagotem1(part)
  1640. sensoryee2:destroy()
  1641. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  1642. if humanoid then
  1643. local canscan = true
  1644. for i,v in pairs(humanoid.Parent:GetChildren()) do
  1645. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1646. if v:findFirstChild("Handle") then
  1647. if v.Handle:findFirstChild("Mesh") then
  1648. 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
  1649. canscan = false
  1650. for i = 0,1 , 0.05 do
  1651. 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)
  1652. game:GetService("RunService").RenderStepped:wait()
  1653. end
  1654. humanoid.Parent.Torso.Anchored = true
  1655. for q,w in pairs(humanoid.Parent:GetChildren()) do
  1656. if w.ClassName == "Part" then
  1657. w.Anchored = true
  1658. end
  1659. end
  1660. end
  1661. end
  1662. end
  1663. end
  1664. end
  1665. end
  1666. end
  1667. sensoryee2.Touched:connect(hagotem1)
  1668. for i = 0,1 , 0.04 do
  1669. 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)
  1670. --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)
  1671. 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)
  1672. 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)
  1673. game:GetService("RunService").RenderStepped:wait()
  1674. end
  1675. for i = 1,5 do
  1676. for i = 0,1 , 0.05 do
  1677. 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)
  1678. 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)
  1679. 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)
  1680. 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)
  1681. 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)
  1682. game:GetService("RunService").RenderStepped:wait()
  1683. end
  1684. local sensoryee = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
  1685. sensoryee.Size = Vector3.new(1, 1, 1)
  1686. sensoryee.CanCollide = false
  1687. sensoryee.Transparency = 0
  1688. sensoryee:BreakJoints()
  1689. local weldsensor = Instance.new("Weld", sensoryee)
  1690. weldsensor.Part0 = sensoryee
  1691. weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  1692. weldsensor.C0 = CFrame.new(0,0.5,0)
  1693. local function hagotem(part)
  1694. sensoryee:destroy()
  1695. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  1696. if humanoid then
  1697. local canscan = true
  1698. for i,v in pairs(humanoid.Parent:GetChildren()) do
  1699. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1700. if v:findFirstChild("Handle") then
  1701. if v.Handle:findFirstChild("Mesh") then
  1702. 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
  1703. canscan = false
  1704. hittd = true
  1705. humanoid.Health = humanoid.Health - math.random(20,25)
  1706. local furfaggrowl = Instance.new("Sound", humanoid.Parent.Head)
  1707. furfaggrowl.SoundId = "rbxassetid://146163534"
  1708. furfaggrowl.Volume = 10
  1709. furfaggrowl:Play()
  1710. local rip = Instance.new("Sound", humanoid.Parent.Head)
  1711. rip.SoundId = "rbxassetid://132514715"
  1712. rip.Volume = 10
  1713. textfag.Text = "kaboom"
  1714. punch:Play()
  1715. for i = 1,math.random(2,3) do
  1716. --Converted with ttyyuu12345's model to script plugin v4
  1717. function sandbox(var,func)
  1718. local env = getfenv(func)
  1719. local newenv = setmetatable({},{
  1720. __index = function(self,k)
  1721. if k=="script" then
  1722. return var
  1723. else
  1724. return env[k]
  1725. end
  1726. end,
  1727. })
  1728. setfenv(func,newenv)
  1729. return func
  1730. end
  1731. cors = {}
  1732. mas = Instance.new("Model",game:GetService("Lighting"))
  1733. local Part0 = Instance.new("Part")
  1734. Part0.Name = "bl00d"
  1735. Part0.Parent = mas
  1736. Part0.Material = Enum.Material.SmoothPlastic
  1737. Part0.BrickColor = BrickColor.new("Maroon")
  1738. Part0.Size = Vector3.new(1.16000009, 0.0500000007, 1.12000048)
  1739. Part0.CFrame = CFrame.new(17.569994, 1.14527643, 34.9399986, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1740. Part0.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1741. Part0.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1742. Part0.Color = Color3.new(0.458824, 0, 0)
  1743. Part0.Position = Vector3.new(17.569994, 1.14527643, 34.9399986)
  1744. Part0.Color = Color3.new(0.458824, 0, 0)
  1745. Part0.CFrame = humanoid.Parent.Head.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1746. Part0:BreakJoints()
  1747. for i,v in pairs(mas:GetChildren()) do
  1748. v.Parent = humanoid.Parent
  1749. pcall(function() v:MakeJoints() end)
  1750. end
  1751. mas:Destroy()
  1752. for i,v in pairs(cors) do
  1753. spawn(function()
  1754. pcall(v)
  1755. end)
  1756. end
  1757. end
  1758. end
  1759. end
  1760. end
  1761. end
  1762. end
  1763. end
  1764. end
  1765. sensoryee.Touched:connect(hagotem)
  1766. for i = 0,1 , 0.1 do
  1767. 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)
  1768. 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)
  1769. 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)
  1770. 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)
  1771. 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)
  1772. game:GetService("RunService").RenderStepped:wait()
  1773. end
  1774. sensoryee:destroy()
  1775. sensoryee2:destroy()
  1776. end
  1777. for i = 0,1 , 0.05 do
  1778. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1779. 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)
  1780. 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)
  1781. 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)
  1782. 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)
  1783. 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)
  1784. game:GetService("RunService").RenderStepped:wait()
  1785. end
  1786. textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
  1787. canwalk = true
  1788. using = false
  1789. end
  1790. end
  1791. mouse.KeyDown:connect(attackflag)
  1792. function attackflag1(key)
  1793. if key == "t" and not using then
  1794. using = true
  1795. canwalk = false
  1796. textfag.Text = "lol rip"
  1797. local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
  1798. sensoryee2.Size = Vector3.new(1, 1, 1)
  1799. sensoryee2.CanCollide = false
  1800. sensoryee2.Transparency = 0
  1801. sensoryee2:BreakJoints()
  1802. local weldsensor = Instance.new("Weld", sensoryee2)
  1803. weldsensor.Part0 = sensoryee2
  1804. weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  1805. weldsensor.C0 = CFrame.new(0,0.5,0)
  1806. local function hagotem1(part)
  1807. sensoryee2:destroy()
  1808. humanoidfurshit = part.Parent:findFirstChild("Humanoid")
  1809. if humanoidfurshit then
  1810. local canscan = true
  1811. for i,v in pairs(humanoidfurshit.Parent:GetChildren()) do
  1812. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1813. if v:findFirstChild("Handle") then
  1814. if v.Handle:findFirstChild("Mesh") then
  1815. 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
  1816. canscan = false
  1817. for i = 0,1 , 0.05 do
  1818. 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)
  1819. game:GetService("RunService").RenderStepped:wait()
  1820. end
  1821. humanoidfurshit.Parent.Torso.Anchored = true
  1822. for q,w in pairs(humanoidfurshit.Parent:GetChildren()) do
  1823. if w.ClassName == "Part" then
  1824. w.Anchored = true
  1825. end
  1826. end
  1827. end
  1828. end
  1829. end
  1830. end
  1831. end
  1832. end
  1833. end
  1834. sensoryee2.Touched:connect(hagotem1)
  1835. for i = 0,1 , 0.04 do
  1836. 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)
  1837. --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)
  1838. 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)
  1839. 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)
  1840. game:GetService("RunService").RenderStepped:wait()
  1841. end
  1842. wait(0.3)
  1843. for i = 0,1 , 0.1 do
  1844. 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)
  1845. 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)
  1846. 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)
  1847. 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)
  1848. 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)
  1849. game:GetService("RunService").RenderStepped:wait()
  1850. end
  1851. local function hagotem(part)
  1852. if humanoidfurshit then
  1853. local canscan = true
  1854. for i,v in pairs(humanoidfurshit.Parent:GetChildren()) do
  1855. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1856. if v:findFirstChild("Handle") then
  1857. if v.Handle:findFirstChild("Mesh") then
  1858. 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
  1859. canscan = false
  1860. hittd = true
  1861. humanoidfurshit.Parent:BreakJoints()
  1862. textfag.Text = "kaboom"
  1863. gore:Play()
  1864. for i,v in pairs(humanoidfurshit.Parent:GetChildren()) do
  1865. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  1866. v:destroy()
  1867. end
  1868. if v.Name == "Head" then
  1869. v.Transparency = 1
  1870. end
  1871. end
  1872. if humanoidfurshit.Parent.Head:findFirstChild("face") then
  1873. humanoidfurshit.Parent.Head.face.Transparency = 1
  1874. end
  1875. for i = 1,math.random(15,20) do
  1876. --Converted with ttyyuu12345's model to script plugin v4
  1877. function sandbox(var,func)
  1878. local env = getfenv(func)
  1879. local newenv = setmetatable({},{
  1880. __index = function(self,k)
  1881. if k=="script" then
  1882. return var
  1883. else
  1884. return env[k]
  1885. end
  1886. end,
  1887. })
  1888. setfenv(func,newenv)
  1889. return func
  1890. end
  1891. cors = {}
  1892. mas = Instance.new("Model",game:GetService("Lighting"))
  1893. local Part0 = Instance.new("Part")
  1894. Part0.Name = "bl00d"
  1895. Part0.Parent = mas
  1896. Part0.Material = Enum.Material.SmoothPlastic
  1897. Part0.BrickColor = BrickColor.new("Maroon")
  1898. Part0.Size = Vector3.new(1.16000009, 0.0500000007, 1.12000048)
  1899. Part0.CFrame = CFrame.new(17.569994, 1.14527643, 34.9399986, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1900. Part0.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1901. Part0.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1902. Part0.Color = Color3.new(0.458824, 0, 0)
  1903. Part0.Position = Vector3.new(17.569994, 1.14527643, 34.9399986)
  1904. Part0.Color = Color3.new(0.458824, 0, 0)
  1905. Part0.CFrame = humanoidfurshit.Parent.Head.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1906. Part0:BreakJoints()
  1907. for i,v in pairs(mas:GetChildren()) do
  1908. v.Parent = humanoidfurshit.Parent
  1909. pcall(function() v:MakeJoints() end)
  1910. end
  1911. mas:Destroy()
  1912. for i,v in pairs(cors) do
  1913. spawn(function()
  1914. pcall(v)
  1915. end)
  1916. end
  1917. end
  1918. end
  1919. end
  1920. end
  1921. end
  1922. end
  1923. end
  1924. end
  1925. hagotem()
  1926. for i = 0,1 , 0.1 do
  1927. 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)
  1928. 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)
  1929. 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)
  1930. 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)
  1931. 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)
  1932. game:GetService("RunService").RenderStepped:wait()
  1933. end
  1934. sensoryee2:destroy()
  1935. for i = 0,1 , 0.05 do
  1936. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1937. 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)
  1938. 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)
  1939. 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)
  1940. 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)
  1941. 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)
  1942. game:GetService("RunService").RenderStepped:wait()
  1943. end
  1944. textfag.Text = game.Players.LocalPlayer.Character.Name.." The Brutal Anti-Furry"
  1945. canwalk = true
  1946. using = false
  1947. end
  1948. end
  1949. mouse.KeyDown:connect(attackflag1)
  1950. while true do
  1951. if howmuch <= -1 then
  1952. howmuch = 0
  1953. end
  1954. if howmuch >= 4 then
  1955. howmuch = 0
  1956. end
  1957. if canwalk and howmuch < 1 then
  1958. for i = 0,1 , 0.01 do
  1959. if canwalk and howmuch < 1 then
  1960.  
  1961. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1962. 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)
  1963. 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)
  1964. 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)
  1965. 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)
  1966. 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)
  1967. game:GetService("RunService").RenderStepped:wait()
  1968. end
  1969. end
  1970. for i = 0,0.3 , 0.004 do
  1971. if canwalk and howmuch < 1 then
  1972. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0,0,0),i)
  1973. 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)
  1974. 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)
  1975. 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)
  1976. 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)
  1977. 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)
  1978. game:GetService("RunService").RenderStepped:wait()
  1979. end
  1980. end
  1981. end
  1982. if canwalk and howmuch >= 1 then
  1983. if canwalk then
  1984. for i = 0,0.5 , 0.05 do
  1985. if canwalk and howmuch >= 1 then
  1986.  
  1987. 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)
  1988. 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)
  1989. 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)
  1990. 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)
  1991. 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)
  1992. 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)
  1993. game:GetService("RunService").RenderStepped:wait()
  1994. end
  1995. end
  1996. end
  1997. if canwalk then
  1998. for i = 0,0.5 , 0.05 do
  1999. if canwalk and howmuch >= 1 then
  2000.  
  2001. 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)
  2002. 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)
  2003. 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)
  2004. 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)
  2005. 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)
  2006. 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)
  2007. game:GetService("RunService").RenderStepped:wait()
  2008. end
  2009. end
  2010. end
  2011. end
  2012. game:GetService("RunService").RenderStepped:wait()
  2013. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement