Advertisement
samuelrichter66

The antiskid

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