Advertisement
samuelrichter66

deebawkaw

Jun 8th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 168.10 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. -- Deebawkaw - credit to Rufus14
  156. using = false
  157. hittd = false
  158. game.Players.LocalPlayer.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
  159. humanoidofplr = game.Players.LocalPlayer.Character.Humanoid
  160. humanoidofplr.Name = "memes"
  161. mouse = game.Players.LocalPlayer:GetMouse()
  162. humanoidofplr.WalkSpeed = 20
  163. humanoidofplr.JumpPower = 65
  164. kicksound = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  165. kicksound.SoundId = "rbxassetid://621550413"
  166. kicksound.Volume = 10
  167. pepsi = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  168. pepsi.SoundId = "rbxassetid://525289290"
  169. pepsi.Volume = 10
  170. bass = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  171. bass.SoundId = "rbxassetid://1087356234"
  172. bass.Volume = 10
  173. explo = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  174. explo.SoundId = "rbxassetid://137994058"
  175. explo.Volume = 10
  176. runninin90 = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  177. runninin90.SoundId = "rbxassetid://723688773"
  178. runninin90.Volume = 10
  179. erection = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  180. erection.SoundId = "rbxassetid://271550300"
  181. erection.Volume = 10
  182. BOOM = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  183. BOOM.SoundId = "rbxassetid://141679994"
  184. BOOM.Volume = 10
  185. explo2 = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  186. explo2.SoundId = "rbxassetid://833855896"
  187. explo2.Volume = 10
  188. allahu = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  189. allahu.SoundId = "rbxassetid://197054133"
  190. allahu.Volume = 10
  191. pepsihit = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  192. pepsihit.SoundId = "rbxassetid://545219984"
  193. pepsihit.Volume = 10
  194. function dothepunch(key)
  195. key = key:lower()
  196. if key == "q" and not using then
  197. using = true
  198. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  199. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  200. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  201. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  202. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  203. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  204. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  205. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  206. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  207. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  208. local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  209. game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
  210. local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  211. llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  212. llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  213. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
  214. local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  215. game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
  216. local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  217. rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  218. rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  219. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
  220. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  221. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  222. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  223. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  224. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  225. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  226. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  227. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  228. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  229. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  230. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  231. for i = 0,0.5 , 0.1 do
  232. 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)
  233. 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)
  234. 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)
  235. 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)
  236. 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)
  237. 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)
  238. game:GetService("RunService").RenderStepped:wait()
  239. end
  240. local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
  241. sensoryee2.Size = Vector3.new(2, 2, 2)
  242. sensoryee2.CanCollide = false
  243. sensoryee2.Transparency = 1
  244. sensoryee2:BreakJoints()
  245. local weldsensor = Instance.new("Weld", sensoryee2)
  246. weldsensor.Part0 = sensoryee2
  247. weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  248. weldsensor.C0 = CFrame.new(0,1,0)
  249. local function udidit(part)
  250. sensoryee2:destroy()
  251. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  252. if humanoid then
  253. local dmgmath = math.random(35,40)
  254. if humanoid.Health <= dmgmath then
  255. humanoid.Health = 0
  256. if humanoid.Parent:findFirstChild("Torso") then
  257. humanoid.Parent.Torso.Velocity = mouse.Hit.lookVector * 35
  258. for i,v in pairs(humanoid.Parent.Torso:GetChildren()) do
  259. if v.ClassName == "Motor6D" then
  260. if v.Name == "Neck" then
  261.  
  262. else
  263. v:destroy()
  264. end
  265. end
  266. end
  267. end
  268. if humanoid.Parent:findFirstChild("Right Arm") then
  269. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  270. attachment.Position = Vector3.new(1, 1, 0)
  271. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  272. ball.Attachment0 = humanoid.Parent["Right Arm"].RightShoulderAttachment
  273. ball.Attachment1 = attachment
  274. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  275. collidepartofleftleg.Name = "Bone"
  276. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  277. collidepartofleftleg.Transparency = 1
  278. collidepartofleftleg:BreakJoints()
  279. local weeld = Instance.new("Weld", collidepartofleftleg)
  280. weeld.Part0 = humanoid.Parent["Right Arm"]
  281. weeld.Part1 = collidepartofleftleg
  282. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  283. end
  284. if humanoid.Parent:findFirstChild("Left Arm") then
  285. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  286. attachment.Position = Vector3.new(1, 1, 0)
  287. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  288. ball.Attachment0 = humanoid.Parent.Torso.LeftCollarAttachment
  289. ball.Attachment1 = humanoid.Parent["Left Arm"].LeftShoulderAttachment
  290. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  291. collidepartofleftleg.Name = "Bone"
  292. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  293. collidepartofleftleg.Transparency = 1
  294. collidepartofleftleg:BreakJoints()
  295. local weeld = Instance.new("Weld", collidepartofleftleg)
  296. weeld.Part0 = humanoid.Parent["Left Arm"]
  297. weeld.Part1 = collidepartofleftleg
  298. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  299. end
  300. if humanoid.Parent:findFirstChild("Right Leg") then
  301. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  302. attachment.Position = Vector3.new(0.5, -1, 0)
  303. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  304. ball.Attachment0 = humanoid.Parent["Right Leg"].RightFootAttachment
  305. ball.Attachment1 = attachment
  306. humanoid.Parent["Right Leg"].RightFootAttachment.Position = Vector3.new(0, 1, 0)
  307. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  308. collidepartofleftleg.Name = "Bone"
  309. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  310. collidepartofleftleg.Transparency = 1
  311. collidepartofleftleg:BreakJoints()
  312. local weeld = Instance.new("Weld", collidepartofleftleg)
  313. weeld.Part0 = humanoid.Parent["Right Leg"]
  314. weeld.Part1 = collidepartofleftleg
  315. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  316. end
  317. if humanoid.Parent:findFirstChild("Left Leg") then
  318. local attachment = Instance.new("Attachment", humanoid.Parent.Torso)
  319. attachment.Position = Vector3.new(-0.5, -1, 0)
  320. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  321. ball.Attachment0 = humanoid.Parent["Left Leg"].LeftFootAttachment
  322. ball.Attachment1 = attachment
  323. humanoid.Parent["Left Leg"].LeftFootAttachment.Position = Vector3.new(0, 1, 0)
  324. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  325. collidepartofleftleg.Name = "Bone"
  326. collidepartofleftleg.Size = Vector3.new(0.8,1.4,0.8)
  327. collidepartofleftleg.Transparency = 1
  328. collidepartofleftleg:BreakJoints()
  329. local weeld = Instance.new("Weld", collidepartofleftleg)
  330. weeld.Part0 = humanoid.Parent["Left Leg"]
  331. weeld.Part1 = collidepartofleftleg
  332. weeld.C0 = weeld.C0 * CFrame.new(0,-0.3,0)
  333. end
  334. if humanoid.Parent:findFirstChild("Head") then
  335. local attachment = Instance.new("Attachment", humanoid.Parent.Head)
  336. attachment.Position = Vector3.new(0, -0.5, 0)
  337. humanoid.Parent.Torso.NeckAttachment.Visible = false
  338. humanoid.Parent.Torso.NeckAttachment.Position = humanoid.Parent.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
  339. local ball = Instance.new("HingeConstraint", humanoid.Parent)
  340. ball.Attachment0 = humanoid.Parent.Torso.NeckAttachment
  341. ball.Attachment1 = attachment
  342. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.Torso)
  343. collidepartofleftleg.Name = "Bone"
  344. collidepartofleftleg.Size = Vector3.new(0.5,0.3,0.5)
  345. collidepartofleftleg.Transparency = 1
  346. collidepartofleftleg:BreakJoints()
  347. local weeld = Instance.new("Weld", collidepartofleftleg)
  348. weeld.Part0 = collidepartofleftleg
  349. weeld.Part1 = humanoid.Parent["Head"]
  350. humanoid.Parent.Torso.Neck:destroy()
  351. end
  352. if humanoid.Parent:findFirstChild("Head") then
  353. local aah = Instance.new("Sound", humanoid.Parent.Head)
  354. if aah then
  355. aah.Volume = 8
  356. local aahmath = math.random(2,8)
  357. if aahmath == 2 then
  358. aah.SoundId = "rbxassetid://884348443"
  359. aah:Play()
  360. end
  361. if aahmath == 3 then
  362. aah.SoundId = "rbxassetid://535528169"
  363. aah.TimePosition = 0.3
  364. aah:Play()
  365. end
  366. if aahmath == 4 then
  367. aah.SoundId = "rbxassetid://1080363252"
  368. aah:Play()
  369. end
  370. if aahmath == 5 then
  371. aah.SoundId = "rbxassetid://150245085"
  372. aah:Play()
  373. end
  374. if aahmath == 6 then
  375. aah.SoundId = "rbxassetid://345287845"
  376. aah.TimePosition = 2.5
  377. aah:Play()
  378. end
  379. if aahmath == 7 then
  380. aah.SoundId = "rbxassetid://147758746"
  381. aah.TimePosition = 1.3
  382. aah:Play()
  383. end
  384. if aahmath == 8 then
  385. aah.SoundId = "rbxassetid://626777433"
  386. aah.TimePosition = 1.4
  387. aah:Play()
  388. end
  389. end
  390. humanoid.Name = "Hammoodmememememem"
  391. end
  392. else
  393. kicksound:Play()
  394. humanoid.Health = humanoid.Health - dmgmath
  395. local vel = Instance.new("BodyVelocity", humanoid.Parent.Torso)
  396. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  397. vel.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.rightVector * 35
  398. wait(0.1)
  399. vel:destroy()
  400. end
  401. end
  402. end
  403. sensoryee2.Touched:connect(udidit)
  404. for i = 0,1 , 0.1 do
  405. 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)
  406. 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)
  407. 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)
  408. 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)
  409. 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)
  410. 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)
  411. game:GetService("RunService").RenderStepped:wait()
  412. end
  413. sensoryee2:destroy()
  414. humanoidrootpart:destroy()
  415. rlegweld:destroy()
  416. llegweld:destroy()
  417. lhandweld:destroy()
  418. rhandweld:destroy()
  419. headweld:destroy()
  420. heed.Parent = game.Players.LocalPlayer.Character.Torso
  421. rootjointclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  422. lhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  423. rhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  424. llegclone.Parent = game.Players.LocalPlayer.Character.Torso
  425. rlegclone.Parent = game.Players.LocalPlayer.Character.Torso
  426. using = false
  427. end
  428. end
  429. mouse.KeyDown:connect(dothepunch)
  430. function kicking(key)
  431. key = key:lower()
  432. if key == "e" and not using then
  433. using = true
  434. hittd = false
  435. local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character.Torso)
  436. sensoryee2.Size = Vector3.new(2, 2, 2)
  437. sensoryee2.CanCollide = false
  438. sensoryee2.Transparency = 1
  439. sensoryee2:BreakJoints()
  440. local weldsensor = Instance.new("Weld", sensoryee2)
  441. weldsensor.Part0 = sensoryee2
  442. weldsensor.Part1 = game.Players.LocalPlayer.Character.Torso
  443. weldsensor.C0 = CFrame.new(0,0,2.5)
  444. local function rapidkick(part)
  445. sensoryee2:destroy()
  446. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  447. if humanoid then
  448. hittd = true
  449. humanoid.MaxHealth = 100
  450. if humanoid.Health <= 55 then
  451. humanoid.Parent.Head.Anchored = true
  452. local bodyps = Instance.new("BodyPosition", game.Players.LocalPlayer.Character.Torso)
  453. bodyps.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  454. bodyps.Position = game.Players.LocalPlayer.Character.Torso.Position
  455. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  456. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  457. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  458. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  459. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  460. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  461. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  462. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  463. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  464. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  465. local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  466. game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
  467. local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  468. llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  469. llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  470. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
  471. local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  472. game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
  473. local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  474. rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  475. rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  476. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
  477. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  478. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  479. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  480. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  481. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  482. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  483. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  484. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  485. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  486. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  487. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  488. allahu:Play()
  489. for i = 0,0.7 , 0.02 do
  490. 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)
  491. 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)
  492. 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)
  493. 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)
  494. 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)
  495. 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)
  496. game:GetService("RunService").RenderStepped:wait()
  497. end
  498. --Converted with ttyyuu12345's model to script plugin v4
  499. function sandbox(var,func)
  500. local env = getfenv(func)
  501. local newenv = setmetatable({},{
  502. __index = function(self,k)
  503. if k=="script" then
  504. return var
  505. else
  506. return env[k]
  507. end
  508. end,
  509. })
  510. setfenv(func,newenv)
  511. return func
  512. end
  513. cors = {}
  514. mas = Instance.new("Model",game:GetService("Lighting"))
  515. Model0 = Instance.new("Model")
  516. Part1 = Instance.new("Part")
  517. CylinderMesh2 = Instance.new("CylinderMesh")
  518. Part3 = Instance.new("Part")
  519. CylinderMesh4 = Instance.new("CylinderMesh")
  520. Part5 = Instance.new("Part")
  521. Part6 = Instance.new("Part")
  522. SpecialMesh7 = Instance.new("SpecialMesh")
  523. Part8 = Instance.new("Part")
  524. Weld9 = Instance.new("Weld")
  525. Weld10 = Instance.new("Weld")
  526. Weld11 = Instance.new("Weld")
  527. Weld12 = Instance.new("Weld")
  528. Weld13 = Instance.new("Weld")
  529. Weld14 = Instance.new("Weld")
  530. Weld15 = Instance.new("Weld")
  531. Weld16 = Instance.new("Weld")
  532. Weld17 = Instance.new("Weld")
  533. Weld18 = Instance.new("Weld")
  534. Weld19 = Instance.new("Weld")
  535. Weld20 = Instance.new("Weld")
  536. Weld21 = Instance.new("Weld")
  537. Weld22 = Instance.new("Weld")
  538. Weld23 = Instance.new("Weld")
  539. Weld24 = Instance.new("Weld")
  540. Weld25 = Instance.new("Weld")
  541. Weld26 = Instance.new("Weld")
  542. Weld27 = Instance.new("Weld")
  543. Weld28 = Instance.new("Weld")
  544. Weld29 = Instance.new("Weld")
  545. Weld30 = Instance.new("Weld")
  546. Weld31 = Instance.new("Weld")
  547. Weld32 = Instance.new("Weld")
  548. Weld33 = Instance.new("Weld")
  549. Weld34 = Instance.new("Weld")
  550. Weld35 = Instance.new("Weld")
  551. Weld36 = Instance.new("Weld")
  552. Weld37 = Instance.new("Weld")
  553. Weld38 = Instance.new("Weld")
  554. Weld39 = Instance.new("Weld")
  555. Weld40 = Instance.new("Weld")
  556. Weld41 = Instance.new("Weld")
  557. Weld42 = Instance.new("Weld")
  558. Weld43 = Instance.new("Weld")
  559. Weld44 = Instance.new("Weld")
  560. Weld45 = Instance.new("Weld")
  561. Weld46 = Instance.new("Weld")
  562. Part47 = Instance.new("Part")
  563. Part48 = Instance.new("Part")
  564. SpecialMesh49 = Instance.new("SpecialMesh")
  565. Part50 = Instance.new("Part")
  566. Part51 = Instance.new("Part")
  567. Part52 = Instance.new("Part")
  568. Part53 = Instance.new("Part")
  569. Part54 = Instance.new("Part")
  570. Part55 = Instance.new("Part")
  571. SpecialMesh56 = Instance.new("SpecialMesh")
  572. Part57 = Instance.new("Part")
  573. SpecialMesh58 = Instance.new("SpecialMesh")
  574. Part59 = Instance.new("Part")
  575. Part60 = Instance.new("Part")
  576. Part61 = Instance.new("Part")
  577. SpecialMesh62 = Instance.new("SpecialMesh")
  578. Part63 = Instance.new("Part")
  579. Part64 = Instance.new("Part")
  580. Part65 = Instance.new("Part")
  581. SpecialMesh66 = Instance.new("SpecialMesh")
  582. Part67 = Instance.new("Part")
  583. Part68 = Instance.new("Part")
  584. Part69 = Instance.new("Part")
  585. SpecialMesh70 = Instance.new("SpecialMesh")
  586. Part71 = Instance.new("Part")
  587. Part72 = Instance.new("Part")
  588. Part73 = Instance.new("Part")
  589. SpecialMesh74 = Instance.new("SpecialMesh")
  590. Part75 = Instance.new("Part")
  591. CylinderMesh76 = Instance.new("CylinderMesh")
  592. Part77 = Instance.new("Part")
  593. Part78 = Instance.new("Part")
  594. SpecialMesh79 = Instance.new("SpecialMesh")
  595. Part80 = Instance.new("Part")
  596. Part81 = Instance.new("Part")
  597. Part82 = Instance.new("Part")
  598. SpecialMesh83 = Instance.new("SpecialMesh")
  599. Part84 = Instance.new("Part")
  600. Part85 = Instance.new("Part")
  601. SpecialMesh86 = Instance.new("SpecialMesh")
  602. Part87 = Instance.new("Part")
  603. Part88 = Instance.new("Part")
  604. Part89 = Instance.new("Part")
  605. Part90 = Instance.new("Part")
  606. SpecialMesh91 = Instance.new("SpecialMesh")
  607. Model0.Name = "ROAD ROLLER DA!!! (By UltimateGate)"
  608. Model0.Parent = mas
  609. Part1.Parent = Model0
  610. Part1.Material = Enum.Material.Concrete
  611. Part1.Reflectance = 0.10000000149012
  612. Part1.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  613. Part1.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  614. Part1.Velocity = Vector3.new(15.9593143, -15.1346016, 1.153018)
  615. Part1.Size = Vector3.new(10, 12, 10)
  616. Part1.CFrame = CFrame.new(35.6884079, 14.3006563, -58.9530258, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  617. Part1.BottomSurface = Enum.SurfaceType.Smooth
  618. Part1.TopSurface = Enum.SurfaceType.Smooth
  619. Part1.Position = Vector3.new(35.6884079, 14.3006563, -58.9530258)
  620. Part1.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  621. CylinderMesh2.Parent = Part1
  622. CylinderMesh2.Scale = Vector3.new(1, 1.02999997, 1)
  623. CylinderMesh2.Scale = Vector3.new(1, 1.02999997, 1)
  624. Part3.Parent = Model0
  625. Part3.BrickColor = BrickColor.new("Bright yellow")
  626. Part3.Reflectance = 0.10000000149012
  627. Part3.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  628. Part3.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  629. Part3.Velocity = Vector3.new(15.9552402, -15.1346149, 1.15288901)
  630. Part3.Size = Vector3.new(2, 12.8000002, 2)
  631. Part3.CFrame = CFrame.new(35.688179, 14.4006109, -58.9560432, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  632. Part3.BottomSurface = Enum.SurfaceType.Smooth
  633. Part3.TopSurface = Enum.SurfaceType.Smooth
  634. Part3.Color = Color3.new(0.960784, 0.803922, 0.188235)
  635. Part3.Position = Vector3.new(35.688179, 14.4006109, -58.9560432)
  636. Part3.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  637. Part3.Color = Color3.new(0.960784, 0.803922, 0.188235)
  638. CylinderMesh4.Parent = Part3
  639. Part5.Parent = Model0
  640. Part5.BrickColor = BrickColor.new("Bright yellow")
  641. Part5.Reflectance = 0.10000000149012
  642. Part5.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  643. Part5.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  644. Part5.Velocity = Vector3.new(15.8883438, -15.3655081, 1.19443977)
  645. Part5.Size = Vector3.new(1.78999996, 5, 1)
  646. Part5.CFrame = CFrame.new(29.9835358, 16.0954094, -58.7225494, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  647. Part5.BottomSurface = Enum.SurfaceType.Smooth
  648. Part5.TopSurface = Enum.SurfaceType.Smooth
  649. Part5.Color = Color3.new(0.960784, 0.803922, 0.188235)
  650. Part5.Position = Vector3.new(29.9835358, 16.0954094, -58.7225494)
  651. Part5.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  652. Part5.Color = Color3.new(0.960784, 0.803922, 0.188235)
  653. Part6.Parent = Model0
  654. Part6.BrickColor = BrickColor.new("Bright yellow")
  655. Part6.Reflectance = 0.10000000149012
  656. Part6.Rotation = Vector3.new(-41.6299973, 89.6699982, 39.9099998)
  657. Part6.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  658. Part6.Velocity = Vector3.new(15.8231583, -15.3657188, 1.19237459)
  659. Part6.Size = Vector3.new(5, 1.39999998, 0.99000001)
  660. Part6.CFrame = CFrame.new(29.9798889, 17.6946754, -58.7708015, 0.00272716419, -0.00228084624, 0.999983907, -0.0301390998, 0.999536812, 0.00236200634, -0.999536514, -0.0301453341, 0.00265720859)
  661. Part6.BottomSurface = Enum.SurfaceType.Smooth
  662. Part6.TopSurface = Enum.SurfaceType.Smooth
  663. Part6.Color = Color3.new(0.960784, 0.803922, 0.188235)
  664. Part6.Position = Vector3.new(29.9798889, 17.6946754, -58.7708015)
  665. Part6.Orientation = Vector3.new(-0.140000001, 89.8499985, -1.73000002)
  666. Part6.Color = Color3.new(0.960784, 0.803922, 0.188235)
  667. SpecialMesh7.Parent = Part6
  668. SpecialMesh7.MeshType = Enum.MeshType.Wedge
  669. Part8.Name = "Center"
  670. Part8.Parent = Model0
  671. Part8.BrickColor = BrickColor.new("Bright yellow")
  672. Part8.Reflectance = 0.10000000149012
  673. Part8.Transparency = 1
  674. Part8.Rotation = Vector3.new(-41.6299973, 89.7999954, 39.9099998)
  675. Part8.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  676. Part8.Velocity = Vector3.new(15.8684664, -14.826972, 1.09184623)
  677. Part8.Size = Vector3.new(12.5, 5.80000019, 27.6000004)
  678. Part8.CFrame = CFrame.new(43.2836189, 16.5145874, -59.0991096, 0.00272715022, -0.0022807084, 0.999993682, -0.030139273, 0.999542892, 0.00236187526, -0.999541998, -0.0301455241, 0.00265716482)
  679. Part8.BottomSurface = Enum.SurfaceType.Smooth
  680. Part8.TopSurface = Enum.SurfaceType.Smooth
  681. Part8.Color = Color3.new(0.960784, 0.803922, 0.188235)
  682. Part8.Position = Vector3.new(43.2836189, 16.5145874, -59.0991096)
  683. Part8.Orientation = Vector3.new(-0.140000001, 89.8499985, -1.73000002)
  684. Part8.Color = Color3.new(0.960784, 0.803922, 0.188235)
  685. Weld9.Parent = Part8
  686. Weld9.C0 = CFrame.new(-0.100002289, -2.20000029, -7.6000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  687. Weld9.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  688. Weld9.Part0 = Part8
  689. Weld9.Part1 = Part1
  690. Weld10.Parent = Part8
  691. Weld10.C0 = CFrame.new(-0.100002289, -2.10000038, -7.6000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  692. Weld10.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  693. Weld10.Part0 = Part8
  694. Weld10.Part1 = Part3
  695. Weld11.Parent = Part8
  696. Weld11.C0 = CFrame.new(-0.400024414, -0.400005341, -13.2999878, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  697. Weld11.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  698. Weld11.Part0 = Part8
  699. Weld11.Part1 = Part5
  700. Weld12.Parent = Part8
  701. Weld12.C0 = CFrame.new(-0.400005341, 1.19999409, -13.2999859, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  702. Weld12.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
  703. Weld12.Part0 = Part8
  704. Weld12.Part1 = Part6
  705. Weld13.Parent = Part8
  706. Weld13.C0 = CFrame.new(-5.70004654, -0.230010033, 8.99998474, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  707. Weld13.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  708. Weld13.Part0 = Part8
  709. Weld13.Part1 = Part47
  710. Weld14.Parent = Part8
  711. Weld14.C0 = CFrame.new(-0.100009918, 0.469994545, 13.5999641, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  712. Weld14.C1 = CFrame.new(0, 0, 0, 1.49011612e-08, -3.49571337e-07, 0.999994278, 5.89458523e-07, 0.99999392, 3.49571422e-07, -0.999990225, 5.89460512e-07, -4.47034836e-08)
  713. Weld14.Part0 = Part8
  714. Weld14.Part1 = Part48
  715. Weld15.Parent = Part8
  716. Weld15.C0 = CFrame.new(-0.100002289, 1.46999836, -3.6000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  717. Weld15.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  718. Weld15.Part0 = Part8
  719. Weld15.Part1 = Part50
  720. Weld16.Parent = Part8
  721. Weld16.C0 = CFrame.new(-0.100017548, 1.79999256, -7.09999847, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  722. Weld16.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  723. Weld16.Part0 = Part8
  724. Weld16.Part1 = Part51
  725. Weld17.Parent = Part8
  726. Weld17.C0 = CFrame.new(4.49999619, 7.36998749, 8.89997864, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  727. Weld17.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  728. Weld17.Part0 = Part8
  729. Weld17.Part1 = Part52
  730. Weld18.Parent = Part8
  731. Weld18.C0 = CFrame.new(4.49999619, 8.8699894, 6.0999794, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  732. Weld18.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  733. Weld18.Part0 = Part8
  734. Weld18.Part1 = Part53
  735. Weld19.Parent = Part8
  736. Weld19.C0 = CFrame.new(-0.100006104, -2.5299983, -2.70001984, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  737. Weld19.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  738. Weld19.Part0 = Part8
  739. Weld19.Part1 = Part54
  740. Weld20.Parent = Part8
  741. Weld20.C0 = CFrame.new(-0.400001526, 3.2999897, -10.8000069, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  742. Weld20.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
  743. Weld20.Part0 = Part8
  744. Weld20.Part1 = Part55
  745. Weld21.Parent = Part8
  746. Weld21.C0 = CFrame.new(-0.100028992, 3.06999397, -3.60002518, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  747. Weld21.C1 = CFrame.new(0, 0, 0, 1.49008779e-08, 6.66761935e-09, 0.999994516, 2.39330944e-07, 0.99999392, -6.66753408e-09, -0.999990225, 2.39331769e-07, -7.45059765e-08)
  748. Weld21.Part0 = Part8
  749. Weld21.Part1 = Part57
  750. Weld22.Parent = Part8
  751. Weld22.C0 = CFrame.new(-0.100002289, 4.76998997, 7.19997787, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  752. Weld22.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  753. Weld22.Part0 = Part8
  754. Weld22.Part1 = Part59
  755. Weld23.Parent = Part8
  756. Weld23.C0 = CFrame.new(-0.100002289, 0.269996643, 0.299983978, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  757. Weld23.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  758. Weld23.Part0 = Part8
  759. Weld23.Part1 = Part60
  760. Weld24.Parent = Part8
  761. Weld24.C0 = CFrame.new(-0.400001526, 3.29998589, -3.40000153, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  762. Weld24.C1 = CFrame.new(0, 0, 0, 1.49011612e-08, -3.49571337e-07, 0.999994278, 5.89458523e-07, 0.99999392, 3.49571422e-07, -0.999990225, 5.89460512e-07, -4.47034836e-08)
  763. Weld24.Part0 = Part8
  764. Weld24.Part1 = Part61
  765. Weld25.Parent = Part8
  766. Weld25.C0 = CFrame.new(-4.70000076, 5.76999187, 3.29998016, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  767. Weld25.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  768. Weld25.Part0 = Part8
  769. Weld25.Part1 = Part63
  770. Weld26.Parent = Part8
  771. Weld26.C0 = CFrame.new(-0.400024414, 0.299996376, -10.7999916, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  772. Weld26.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  773. Weld26.Part0 = Part8
  774. Weld26.Part1 = Part64
  775. Weld27.Parent = Part8
  776. Weld27.C0 = CFrame.new(-7.60004807, -0.230009079, 8.99998474, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  777. Weld27.C1 = CFrame.new(0, 0, 0, -1, 0, 4.37113883e-08, 0, 1, 0, -4.37113883e-08, 0, -1)
  778. Weld27.Part0 = Part8
  779. Weld27.Part1 = Part65
  780. Weld28.Parent = Part8
  781. Weld28.C0 = CFrame.new(-0.300003052, 3.06999302, 0.299983978, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  782. Weld28.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  783. Weld28.Part0 = Part8
  784. Weld28.Part1 = Part67
  785. Weld29.Parent = Part8
  786. Weld29.C0 = CFrame.new(5.5, -0.230006218, 8.99998474, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  787. Weld29.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  788. Weld29.Part0 = Part8
  789. Weld29.Part1 = Part68
  790. Weld30.Parent = Part8
  791. Weld30.C0 = CFrame.new(-0.100009918, 4.76998997, 11.099968, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  792. Weld30.C1 = CFrame.new(0, 0, 0, 1.49011612e-08, -3.49571337e-07, 0.999994278, 5.89458523e-07, 0.99999392, 3.49571422e-07, -0.999990225, 5.89460512e-07, -4.47034836e-08)
  793. Weld30.Part0 = Part8
  794. Weld30.Part1 = Part69
  795. Weld31.Parent = Part8
  796. Weld31.C0 = CFrame.new(-0.100002289, 1.46999836, -10.8000336, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  797. Weld31.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  798. Weld31.Part0 = Part8
  799. Weld31.Part1 = Part71
  800. Weld32.Parent = Part8
  801. Weld32.C0 = CFrame.new(4.49999619, 5.76999092, 3.29998016, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  802. Weld32.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  803. Weld32.Part0 = Part8
  804. Weld32.Part1 = Part72
  805. Weld33.Parent = Part8
  806. Weld33.C0 = CFrame.new(-0.40001297, 2.29999352, -12.3999844, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  807. Weld33.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
  808. Weld33.Part0 = Part8
  809. Weld33.Part1 = Part73
  810. Weld34.Parent = Part8
  811. Weld34.C0 = CFrame.new(-0.100021362, -2.20000362, 8.80002213, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  812. Weld34.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  813. Weld34.Part0 = Part8
  814. Weld34.Part1 = Part75
  815. Weld35.Parent = Part8
  816. Weld35.C0 = CFrame.new(-0.400001526, 3.69999981, -7.1000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  817. Weld35.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  818. Weld35.Part0 = Part8
  819. Weld35.Part1 = Part77
  820. Weld36.Parent = Part8
  821. Weld36.C0 = CFrame.new(7.39999771, -0.230010033, 8.99997711, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  822. Weld36.Part0 = Part8
  823. Weld36.Part1 = Part78
  824. Weld37.Parent = Part8
  825. Weld37.C0 = CFrame.new(-0.300003052, 4.76999092, 1.79998398, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  826. Weld37.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  827. Weld37.Part0 = Part8
  828. Weld37.Part1 = Part80
  829. Weld38.Parent = Part8
  830. Weld38.C0 = CFrame.new(-0.100002289, 0.469992638, 7.19998169, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  831. Weld38.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  832. Weld38.Part0 = Part8
  833. Weld38.Part1 = Part81
  834. Weld39.Parent = Part8
  835. Weld39.C0 = CFrame.new(-0.0999755859, 3.06999588, -10.8000221, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  836. Weld39.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
  837. Weld39.Part0 = Part8
  838. Weld39.Part1 = Part82
  839. Weld40.Parent = Part8
  840. Weld40.C0 = CFrame.new(-0.100002289, 0.769999504, -2.10001373, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  841. Weld40.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  842. Weld40.Part0 = Part8
  843. Weld40.Part1 = Part84
  844. Weld41.Parent = Part8
  845. Weld41.C0 = CFrame.new(-0.0999755859, 8.86998558, 8.89997482, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  846. Weld41.C1 = CFrame.new(0, 0, 0, 1.49008796e-08, 6.66744882e-09, 0.999994516, 2.39336913e-07, 0.99999392, -6.66736355e-09, -0.999990225, 2.39337737e-07, -7.45059765e-08)
  847. Weld41.Part0 = Part8
  848. Weld41.Part1 = Part85
  849. Weld42.Parent = Part8
  850. Weld42.C0 = CFrame.new(-4.70000076, 8.86999321, 6.0999794, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  851. Weld42.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  852. Weld42.Part0 = Part8
  853. Weld42.Part1 = Part87
  854. Weld43.Parent = Part8
  855. Weld43.C0 = CFrame.new(-4.69999313, 7.36998749, 8.89997864, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  856. Weld43.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  857. Weld43.Part0 = Part8
  858. Weld43.Part1 = Part88
  859. Weld44.Parent = Part8
  860. Weld44.C0 = CFrame.new(-0.100017548, 8.86998558, 6.0999794, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  861. Weld44.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
  862. Weld44.Part0 = Part8
  863. Weld44.Part1 = Part89
  864. Weld45.Parent = Part8
  865. Weld45.C0 = CFrame.new(-0.100025177, 8.86998749, 3.29998398, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
  866. Weld45.C1 = CFrame.new(0, 0, 0, -1.49008823e-08, 6.66727829e-09, -0.999994516, -2.39345496e-07, 0.99999392, 6.66733513e-09, 0.999990225, 2.39346434e-07, 7.45059765e-08)
  867. Weld45.Part0 = Part8
  868. Weld45.Part1 = Part90
  869. Weld46.Parent = Part8
  870. Weld46.C0 = CFrame.new(0.258005589, 5.26530218, -7.02216148, 0.95105654, 0.26761654, -0.154508486, -0.10569004, 0.751547456, 0.65115732, 0.290380985, -0.602957428, 0.743048429)
  871. Weld46.Part0 = Part8
  872. Part47.Parent = Model0
  873. Part47.BrickColor = BrickColor.new("Bright yellow")
  874. Part47.Reflectance = 0.10000000149012
  875. Part47.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  876. Part47.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  877. Part47.Velocity = Vector3.new(15.9139099, -14.4553328, 1.0229578)
  878. Part47.Size = Vector3.new(6.80000019, 1, 6)
  879. Part47.CFrame = CFrame.new(52.2685242, 16.4777355, -53.3708267, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  880. Part47.BottomSurface = Enum.SurfaceType.Smooth
  881. Part47.TopSurface = Enum.SurfaceType.Smooth
  882. Part47.Color = Color3.new(0.960784, 0.803922, 0.188235)
  883. Part47.Position = Vector3.new(52.2685242, 16.4777355, -53.3708267)
  884. Part47.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  885. Part47.Color = Color3.new(0.960784, 0.803922, 0.188235)
  886. Part48.Parent = Model0
  887. Part48.BrickColor = BrickColor.new("Bright yellow")
  888. Part48.Reflectance = 0.10000000149012
  889. Part48.Rotation = Vector3.new(138.37999, -89.6699982, 140.099991)
  890. Part48.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  891. Part48.Velocity = Vector3.new(15.8489389, -14.2756872, 0.986850679)
  892. Part48.Size = Vector3.new(11, 5.4000001, 2.78999996)
  893. Part48.CFrame = CFrame.new(56.8821526, 17.0195026, -58.9771767, -0.00272716279, -0.00228001853, -0.999983907, 0.0301387496, 0.999536812, -0.002361177, 0.999536276, -0.0301449895, -0.00265720394)
  894. Part48.BottomSurface = Enum.SurfaceType.Smooth
  895. Part48.TopSurface = Enum.SurfaceType.Smooth
  896. Part48.Color = Color3.new(0.960784, 0.803922, 0.188235)
  897. Part48.Position = Vector3.new(56.8821526, 17.0195026, -58.9771767)
  898. Part48.Orientation = Vector3.new(0.140000001, -90.1500015, 1.73000002)
  899. Part48.Color = Color3.new(0.960784, 0.803922, 0.188235)
  900. SpecialMesh49.Parent = Part48
  901. SpecialMesh49.MeshType = Enum.MeshType.Wedge
  902. Part50.Parent = Model0
  903. Part50.BrickColor = BrickColor.new("Bright yellow")
  904. Part50.Reflectance = 0.10000000149012
  905. Part50.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  906. Part50.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  907. Part50.Velocity = Vector3.new(15.8094931, -14.9729595, 1.1175791)
  908. Part50.Size = Vector3.new(2.5999999, 11, 1.99000001)
  909. Part50.CFrame = CFrame.new(39.6800117, 17.9784241, -59.0530319, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  910. Part50.BottomSurface = Enum.SurfaceType.Smooth
  911. Part50.TopSurface = Enum.SurfaceType.Smooth
  912. Part50.Color = Color3.new(0.960784, 0.803922, 0.188235)
  913. Part50.Position = Vector3.new(39.6800117, 17.9784241, -59.0530319)
  914. Part50.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  915. Part50.Color = Color3.new(0.960784, 0.803922, 0.188235)
  916. Part51.Parent = Model0
  917. Part51.BrickColor = BrickColor.new("Bright yellow")
  918. Part51.Reflectance = 0.10000000149012
  919. Part51.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  920. Part51.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  921. Part51.Velocity = Vector3.new(15.7963123, -15.1148634, 1.14401746)
  922. Part51.Size = Vector3.new(3.20000005, 11, 5)
  923. Part51.CFrame = CFrame.new(36.179287, 18.3000031, -59.0722656, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  924. Part51.BottomSurface = Enum.SurfaceType.Smooth
  925. Part51.TopSurface = Enum.SurfaceType.Smooth
  926. Part51.Color = Color3.new(0.960784, 0.803922, 0.188235)
  927. Part51.Position = Vector3.new(36.179287, 18.3000031, -59.0722656)
  928. Part51.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  929. Part51.Color = Color3.new(0.960784, 0.803922, 0.188235)
  930. Part52.Parent = Model0
  931. Part52.BrickColor = BrickColor.new("Mid gray")
  932. Part52.Reflectance = 0.10000000149012
  933. Part52.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  934. Part52.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  935. Part52.Velocity = Vector3.new(15.5385218, -14.4726038, 1.01410508)
  936. Part52.Size = Vector3.new(1.99000001, 1, 1)
  937. Part52.CFrame = CFrame.new(52.1790047, 23.7665997, -63.7955704, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  938. Part52.BottomSurface = Enum.SurfaceType.Smooth
  939. Part52.TopSurface = Enum.SurfaceType.Smooth
  940. Part52.Color = Color3.new(0.803922, 0.803922, 0.803922)
  941. Part52.Position = Vector3.new(52.1790047, 23.7665997, -63.7955704)
  942. Part52.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  943. Part52.Color = Color3.new(0.803922, 0.803922, 0.803922)
  944. Part53.Parent = Model0
  945. Part53.BrickColor = BrickColor.new("Mid gray")
  946. Part53.Reflectance = 0.10000000149012
  947. Part53.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  948. Part53.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  949. Part53.Velocity = Vector3.new(15.4776211, -14.5862904, 1.03366053)
  950. Part53.Size = Vector3.new(1, 1, 4.59000015)
  951. Part53.CFrame = CFrame.new(49.3756027, 25.259304, -63.8482285, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  952. Part53.BottomSurface = Enum.SurfaceType.Smooth
  953. Part53.TopSurface = Enum.SurfaceType.Smooth
  954. Part53.Color = Color3.new(0.803922, 0.803922, 0.803922)
  955. Part53.Position = Vector3.new(49.3756027, 25.259304, -63.8482285)
  956. Part53.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  957. Part53.Color = Color3.new(0.803922, 0.803922, 0.803922)
  958. Part54.Parent = Model0
  959. Part54.BrickColor = BrickColor.new("Bright yellow")
  960. Part54.Reflectance = 0.10000000149012
  961. Part54.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  962. Part54.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  963. Part54.Velocity = Vector3.new(15.9723892, -14.9359541, 1.11583388)
  964. Part54.Size = Vector3.new(1, 12.6000004, 9.80000019)
  965. Part54.CFrame = CFrame.new(40.5891151, 13.9823828, -58.9300575, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  966. Part54.BottomSurface = Enum.SurfaceType.Smooth
  967. Part54.TopSurface = Enum.SurfaceType.Smooth
  968. Part54.Color = Color3.new(0.960784, 0.803922, 0.188235)
  969. Part54.Position = Vector3.new(40.5891151, 13.9823828, -58.9300575)
  970. Part54.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  971. Part54.Color = Color3.new(0.960784, 0.803922, 0.188235)
  972. Part55.Parent = Model0
  973. Part55.BrickColor = BrickColor.new("Bright yellow")
  974. Part55.Reflectance = 0.10000000149012
  975. Part55.Rotation = Vector3.new(-41.6299973, 89.6699982, 39.9099998)
  976. Part55.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  977. Part55.Velocity = Vector3.new(15.7374144, -15.2646685, 1.17047548)
  978. Part55.Size = Vector3.new(5.19000006, 1.38999999, 2.3900001)
  979. Part55.CFrame = CFrame.new(32.4750633, 19.7996159, -58.8274689, 0.00272716419, -0.00228084624, 0.999983907, -0.0301390998, 0.999536812, 0.00236200634, -0.999536514, -0.0301453341, 0.00265720859)
  980. Part55.BottomSurface = Enum.SurfaceType.Smooth
  981. Part55.TopSurface = Enum.SurfaceType.Smooth
  982. Part55.Color = Color3.new(0.960784, 0.803922, 0.188235)
  983. Part55.Position = Vector3.new(32.4750633, 19.7996159, -58.8274689)
  984. Part55.Orientation = Vector3.new(-0.140000001, 89.8499985, -1.73000002)
  985. Part55.Color = Color3.new(0.960784, 0.803922, 0.188235)
  986. SpecialMesh56.Parent = Part55
  987. SpecialMesh56.MeshType = Enum.MeshType.Wedge
  988. Part57.Parent = Model0
  989. Part57.BrickColor = BrickColor.new("Bright yellow")
  990. Part57.Reflectance = 0.10000000149012
  991. Part57.Rotation = Vector3.new(138.369995, -89.6699982, 140.099991)
  992. Part57.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  993. Part57.Velocity = Vector3.new(15.7443075, -14.9731712, 1.11551416)
  994. Part57.Size = Vector3.new(11, 0.600000024, 1.99000001)
  995. Part57.CFrame = CFrame.new(39.676342, 19.5776901, -59.1012383, -0.00272716419, -0.00228036777, -0.999983907, 0.0301391147, 0.999536812, -0.00236152788, 0.999536514, -0.030145349, -0.00265722303)
  996. Part57.BottomSurface = Enum.SurfaceType.Smooth
  997. Part57.TopSurface = Enum.SurfaceType.Smooth
  998. Part57.Color = Color3.new(0.960784, 0.803922, 0.188235)
  999. Part57.Position = Vector3.new(39.676342, 19.5776901, -59.1012383)
  1000. Part57.Orientation = Vector3.new(0.140000001, -90.1500015, 1.73000002)
  1001. Part57.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1002. SpecialMesh58.Parent = Part57
  1003. SpecialMesh58.MeshType = Enum.MeshType.Wedge
  1004. Part59.Parent = Model0
  1005. Part59.BrickColor = BrickColor.new("Bright yellow")
  1006. Part59.Reflectance = 0.10000000149012
  1007. Part59.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1008. Part59.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1009. Part59.Velocity = Vector3.new(15.6742344, -14.535656, 1.03042412)
  1010. Part59.Size = Vector3.new(3.20000005, 11, 5.5999999)
  1011. Part59.CFrame = CFrame.new(50.4724007, 21.3024158, -59.1238136, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1012. Part59.BottomSurface = Enum.SurfaceType.Smooth
  1013. Part59.TopSurface = Enum.SurfaceType.Smooth
  1014. Part59.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1015. Part59.Position = Vector3.new(50.4724007, 21.3024158, -59.1238136)
  1016. Part59.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1017. Part59.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1018. Part60.Parent = Model0
  1019. Part60.BrickColor = BrickColor.new("Bright yellow")
  1020. Part60.Reflectance = 0.10000000149012
  1021. Part60.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1022. Part60.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1023. Part60.Velocity = Vector3.new(15.8580885, -14.8147287, 1.08919334)
  1024. Part60.Size = Vector3.new(5, 13, 3.78999996)
  1025. Part60.CFrame = CFrame.new(43.5827141, 16.7881832, -59.0064964, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1026. Part60.BottomSurface = Enum.SurfaceType.Smooth
  1027. Part60.TopSurface = Enum.SurfaceType.Smooth
  1028. Part60.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1029. Part60.Position = Vector3.new(43.5827141, 16.7881832, -59.0064964)
  1030. Part60.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1031. Part60.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1032. Part61.Parent = Model0
  1033. Part61.BrickColor = BrickColor.new("Bright yellow")
  1034. Part61.Reflectance = 0.10000000149012
  1035. Part61.Rotation = Vector3.new(138.37999, -89.6699982, 140.099991)
  1036. Part61.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1037. Part61.Velocity = Vector3.new(15.7368565, -14.964735, 1.11367643)
  1038. Part61.Size = Vector3.new(5.19000006, 1.38999999, 2.3900001)
  1039. Part61.CFrame = CFrame.new(39.8750229, 19.817091, -58.8078041, -0.00272716279, -0.00228001853, -0.999983907, 0.0301387496, 0.999536812, -0.002361177, 0.999536276, -0.0301449895, -0.00265720394)
  1040. Part61.BottomSurface = Enum.SurfaceType.Smooth
  1041. Part61.TopSurface = Enum.SurfaceType.Smooth
  1042. Part61.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1043. Part61.Position = Vector3.new(39.8750229, 19.817091, -58.8078041)
  1044. Part61.Orientation = Vector3.new(0.140000001, -90.1500015, 1.73000002)
  1045. Part61.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1046. SpecialMesh62.Parent = Part61
  1047. SpecialMesh62.MeshType = Enum.MeshType.Wedge
  1048. Part63.Parent = Model0
  1049. Part63.BrickColor = BrickColor.new("Mid gray")
  1050. Part63.Reflectance = 0.10000000149012
  1051. Part63.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1052. Part63.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1053. Part63.Velocity = Vector3.new(15.6634455, -14.6883507, 1.05898273)
  1054. Part63.Size = Vector3.new(5.19000006, 1, 1)
  1055. Part63.CFrame = CFrame.new(46.5576019, 22.4313908, -54.566433, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1056. Part63.BottomSurface = Enum.SurfaceType.Smooth
  1057. Part63.TopSurface = Enum.SurfaceType.Smooth
  1058. Part63.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1059. Part63.Position = Vector3.new(46.5576019, 22.4313908, -54.566433)
  1060. Part63.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1061. Part63.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1062. Part64.Parent = Model0
  1063. Part64.BrickColor = BrickColor.new("Bright yellow")
  1064. Part64.Reflectance = 0.10000000149012
  1065. Part64.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1066. Part64.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1067. Part64.Velocity = Vector3.new(15.8596373, -15.2642717, 1.1743474)
  1068. Part64.Size = Vector3.new(3.20000005, 5, 4)
  1069. Part64.CFrame = CFrame.new(32.4819221, 16.8009949, -58.737011, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1070. Part64.BottomSurface = Enum.SurfaceType.Smooth
  1071. Part64.TopSurface = Enum.SurfaceType.Smooth
  1072. Part64.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1073. Part64.Position = Vector3.new(32.4819221, 16.8009949, -58.737011)
  1074. Part64.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1075. Part64.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1076. Part65.Parent = Model0
  1077. Part65.BrickColor = BrickColor.new("Bright yellow")
  1078. Part65.Reflectance = 0.10000000149012
  1079. Part65.Rotation = Vector3.new(178.269989, 0.159999996, 179.869995)
  1080. Part65.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1081. Part65.Velocity = Vector3.new(15.9261608, -14.4530563, 1.02292252)
  1082. Part65.Size = Vector3.new(6, 6.78999996, 2.78999996)
  1083. Part65.CFrame = CFrame.new(52.2633438, 16.5349998, -51.4716949, -0.999993682, -0.00228062109, 0.00272715022, -0.00236178655, 0.999542892, -0.030139273, -0.00265712384, -0.0301455241, -0.999541998)
  1084. Part65.BottomSurface = Enum.SurfaceType.Smooth
  1085. Part65.TopSurface = Enum.SurfaceType.Smooth
  1086. Part65.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1087. Part65.Position = Vector3.new(52.2633438, 16.5349998, -51.4716949)
  1088. Part65.Orientation = Vector3.new(1.73000002, 179.839996, -0.140000001)
  1089. Part65.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1090. SpecialMesh66.Parent = Part65
  1091. SpecialMesh66.MeshType = Enum.MeshType.Wedge
  1092. Part67.Parent = Model0
  1093. Part67.BrickColor = BrickColor.new("Black")
  1094. Part67.Reflectance = 0.10000000149012
  1095. Part67.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1096. Part67.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1097. Part67.Velocity = Vector3.new(15.7453032, -14.8148584, 1.0855757)
  1098. Part67.Size = Vector3.new(0.600000024, 7.4000001, 3.78999996)
  1099. Part67.CFrame = CFrame.new(43.5757828, 19.5929279, -58.890995, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1100. Part67.BottomSurface = Enum.SurfaceType.Smooth
  1101. Part67.TopSurface = Enum.SurfaceType.Smooth
  1102. Part67.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1103. Part67.Position = Vector3.new(43.5757828, 19.5929279, -58.890995)
  1104. Part67.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1105. Part67.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1106. Part68.Parent = Model0
  1107. Part68.BrickColor = BrickColor.new("Bright yellow")
  1108. Part68.Reflectance = 0.10000000149012
  1109. Part68.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1110. Part68.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1111. Part68.Velocity = Vector3.new(15.8416977, -14.4687462, 1.02316523)
  1112. Part68.Size = Vector3.new(6.80000019, 1, 6)
  1113. Part68.CFrame = CFrame.new(52.2990723, 16.1401768, -64.5657425, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1114. Part68.BottomSurface = Enum.SurfaceType.Smooth
  1115. Part68.TopSurface = Enum.SurfaceType.Smooth
  1116. Part68.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1117. Part68.Position = Vector3.new(52.2990723, 16.1401768, -64.5657425)
  1118. Part68.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1119. Part68.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1120. Part69.Parent = Model0
  1121. Part69.BrickColor = BrickColor.new("Bright yellow")
  1122. Part69.Reflectance = 0.10000000149012
  1123. Part69.Rotation = Vector3.new(138.37999, -89.6699982, 140.099991)
  1124. Part69.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1125. Part69.Velocity = Vector3.new(15.6739407, -14.3775835, 1.00048959)
  1126. Part69.Size = Vector3.new(11, 3.20000005, 2.19000006)
  1127. Part69.CFrame = CFrame.new(54.372364, 21.3116264, -59.1134453, -0.00272716279, -0.00228001853, -0.999983907, 0.0301387496, 0.999536812, -0.002361177, 0.999536276, -0.0301449895, -0.00265720394)
  1128. Part69.BottomSurface = Enum.SurfaceType.Smooth
  1129. Part69.TopSurface = Enum.SurfaceType.Smooth
  1130. Part69.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1131. Part69.Position = Vector3.new(54.372364, 21.3116264, -59.1134453)
  1132. Part69.Orientation = Vector3.new(0.140000001, -90.1500015, 1.73000002)
  1133. Part69.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1134. SpecialMesh70.Parent = Part69
  1135. SpecialMesh70.MeshType = Enum.MeshType.Wedge
  1136. Part71.Parent = Model0
  1137. Part71.BrickColor = BrickColor.new("Bright yellow")
  1138. Part71.Reflectance = 0.10000000149012
  1139. Part71.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1140. Part71.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1141. Part71.Velocity = Vector3.new(15.8100357, -15.2647877, 1.17284322)
  1142. Part71.Size = Vector3.new(2.5999999, 11, 2.3900001)
  1143. Part71.CFrame = CFrame.new(32.4800301, 17.9614201, -59.0721626, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1144. Part71.BottomSurface = Enum.SurfaceType.Smooth
  1145. Part71.TopSurface = Enum.SurfaceType.Smooth
  1146. Part71.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1147. Part71.Position = Vector3.new(32.4800301, 17.9614201, -59.0721626)
  1148. Part71.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1149. Part71.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1150. Part72.Parent = Model0
  1151. Part72.BrickColor = BrickColor.new("Mid gray")
  1152. Part72.Reflectance = 0.10000000149012
  1153. Part72.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1154. Part72.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1155. Part72.Velocity = Vector3.new(15.6041288, -14.6993694, 1.0591532)
  1156. Part72.Size = Vector3.new(5.19000006, 1, 1)
  1157. Part72.CFrame = CFrame.new(46.5826912, 22.154108, -63.7622147, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1158. Part72.BottomSurface = Enum.SurfaceType.Smooth
  1159. Part72.TopSurface = Enum.SurfaceType.Smooth
  1160. Part72.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1161. Part72.Position = Vector3.new(46.5826912, 22.154108, -63.7622147)
  1162. Part72.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1163. Part72.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1164. Part73.Parent = Model0
  1165. Part73.BrickColor = BrickColor.new("Bright yellow")
  1166. Part73.Reflectance = 0.10000000149012
  1167. Part73.Rotation = Vector3.new(-41.6299973, 89.6699982, 39.9099998)
  1168. Part73.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1169. Part73.Velocity = Vector3.new(15.7782755, -15.3293858, 1.18404686)
  1170. Part73.Size = Vector3.new(5, 0.800000012, 0.790000021)
  1171. Part73.CFrame = CFrame.new(30.8773766, 18.796299, -58.8015633, 0.00272716419, -0.00228084624, 0.999983907, -0.0301390998, 0.999536812, 0.00236200634, -0.999536514, -0.0301453341, 0.00265720859)
  1172. Part73.BottomSurface = Enum.SurfaceType.Smooth
  1173. Part73.TopSurface = Enum.SurfaceType.Smooth
  1174. Part73.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1175. Part73.Position = Vector3.new(30.8773766, 18.796299, -58.8015633)
  1176. Part73.Orientation = Vector3.new(-0.140000001, 89.8499985, -1.73000002)
  1177. Part73.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1178. SpecialMesh74.Parent = Part73
  1179. SpecialMesh74.MeshType = Enum.MeshType.Wedge
  1180. Part75.Parent = Model0
  1181. Part75.Material = Enum.Material.Concrete
  1182. Part75.Reflectance = 0.10000000149012
  1183. Part75.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1184. Part75.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1185. Part75.Velocity = Vector3.new(15.9580784, -14.4698839, 1.02713895)
  1186. Part75.Size = Vector3.new(10, 12, 10)
  1187. Part75.CFrame = CFrame.new(52.0883293, 14.3393888, -58.9094315, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1188. Part75.BottomSurface = Enum.SurfaceType.Smooth
  1189. Part75.TopSurface = Enum.SurfaceType.Smooth
  1190. Part75.Position = Vector3.new(52.0883293, 14.3393888, -58.9094315)
  1191. Part75.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1192. CylinderMesh76.Parent = Part75
  1193. CylinderMesh76.Scale = Vector3.new(1, 1.02999997, 1)
  1194. CylinderMesh76.Scale = Vector3.new(1, 1.02999997, 1)
  1195. Part77.Parent = Model0
  1196. Part77.BrickColor = BrickColor.new("Bright yellow")
  1197. Part77.Reflectance = 0.10000000149012
  1198. Part77.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1199. Part77.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1200. Part77.Velocity = Vector3.new(15.7208385, -15.1147547, 1.1415596)
  1201. Part77.Size = Vector3.new(0.600000024, 5.19000006, 5)
  1202. Part77.CFrame = CFrame.new(36.1741295, 20.2081833, -58.8296967, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1203. Part77.BottomSurface = Enum.SurfaceType.Smooth
  1204. Part77.TopSurface = Enum.SurfaceType.Smooth
  1205. Part77.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1206. Part77.Position = Vector3.new(36.1741295, 20.2081833, -58.8296967)
  1207. Part77.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1208. Part77.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1209. Part78.Parent = Model0
  1210. Part78.BrickColor = BrickColor.new("Bright yellow")
  1211. Part78.Reflectance = 0.10000000149012
  1212. Part78.Rotation = Vector3.new(-1.73000002, -0.159999996, 0.129999995)
  1213. Part78.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1214. Part78.Velocity = Vector3.new(15.8294477, -14.4710217, 1.02320051)
  1215. Part78.Size = Vector3.new(6, 6.78999996, 2.78999996)
  1216. Part78.CFrame = CFrame.new(52.304245, 16.0829086, -66.4648666, 0.999993682, -0.00228062109, -0.00272719399, 0.00236178795, 0.999542892, 0.030139273, 0.00265716738, -0.0301455241, 0.999541998)
  1217. Part78.BottomSurface = Enum.SurfaceType.Smooth
  1218. Part78.TopSurface = Enum.SurfaceType.Smooth
  1219. Part78.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1220. Part78.Position = Vector3.new(52.304245, 16.0829086, -66.4648666)
  1221. Part78.Orientation = Vector3.new(-1.73000002, -0.159999996, 0.140000001)
  1222. Part78.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1223. SpecialMesh79.Parent = Part78
  1224. SpecialMesh79.MeshType = Enum.MeshType.Wedge
  1225. Part80.Parent = Model0
  1226. Part80.BrickColor = BrickColor.new("Black")
  1227. Part80.Reflectance = 0.10000000149012
  1228. Part80.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1229. Part80.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1230. Part80.Velocity = Vector3.new(15.675931, -14.7542858, 1.0718683)
  1231. Part80.Size = Vector3.new(2.78999996, 7.4000001, 0.790000021)
  1232. Part80.CFrame = CFrame.new(45.0718956, 21.2956905, -58.9382553, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1233. Part80.BottomSurface = Enum.SurfaceType.Smooth
  1234. Part80.TopSurface = Enum.SurfaceType.Smooth
  1235. Part80.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1236. Part80.Position = Vector3.new(45.0718956, 21.2956905, -58.9382553)
  1237. Part80.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1238. Part80.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1239. Part81.Parent = Model0
  1240. Part81.BrickColor = BrickColor.new("Bright yellow")
  1241. Part81.Reflectance = 0.10000000149012
  1242. Part81.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1243. Part81.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1244. Part81.Velocity = Vector3.new(15.8494205, -14.5350885, 1.03597403)
  1245. Part81.Size = Vector3.new(5.4000001, 11, 10)
  1246. Part81.CFrame = CFrame.new(50.4822121, 17.004385, -58.9941902, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1247. Part81.BottomSurface = Enum.SurfaceType.Smooth
  1248. Part81.TopSurface = Enum.SurfaceType.Smooth
  1249. Part81.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1250. Part81.Position = Vector3.new(50.4822121, 17.004385, -58.9941902)
  1251. Part81.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1252. Part81.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1253. Part82.Parent = Model0
  1254. Part82.BrickColor = BrickColor.new("Bright yellow")
  1255. Part82.Reflectance = 0.10000000149012
  1256. Part82.Rotation = Vector3.new(-41.6299973, 89.6699982, 39.9099998)
  1257. Part82.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1258. Part82.Velocity = Vector3.new(15.7448502, -15.2649984, 1.17077804)
  1259. Part82.Size = Vector3.new(11, 0.600000024, 2.3900001)
  1260. Part82.CFrame = CFrame.new(32.4763908, 19.5606842, -59.1204224, 0.00272716419, -0.00228084624, 0.999983907, -0.0301390998, 0.999536812, 0.00236200634, -0.999536514, -0.0301453341, 0.00265720859)
  1261. Part82.BottomSurface = Enum.SurfaceType.Smooth
  1262. Part82.TopSurface = Enum.SurfaceType.Smooth
  1263. Part82.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1264. Part82.Position = Vector3.new(32.4763908, 19.5606842, -59.1204224)
  1265. Part82.Orientation = Vector3.new(-0.140000001, 89.8499985, -1.73000002)
  1266. Part82.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1267. SpecialMesh83.Parent = Part82
  1268. SpecialMesh83.MeshType = Enum.MeshType.Wedge
  1269. Part84.Parent = Model0
  1270. Part84.BrickColor = BrickColor.new("Bright yellow")
  1271. Part84.Reflectance = 0.10000000149012
  1272. Part84.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1273. Part84.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1274. Part84.Velocity = Vector3.new(15.8378992, -14.9120703, 1.10696924)
  1275. Part84.Size = Vector3.new(4, 13, 1)
  1276. Part84.CFrame = CFrame.new(41.181591, 17.2822895, -59.0279465, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1277. Part84.BottomSurface = Enum.SurfaceType.Smooth
  1278. Part84.TopSurface = Enum.SurfaceType.Smooth
  1279. Part84.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1280. Part84.Position = Vector3.new(41.181591, 17.2822895, -59.0279465)
  1281. Part84.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1282. Part84.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1283. Part85.Parent = Model0
  1284. Part85.BrickColor = BrickColor.new("Mid gray")
  1285. Part85.Reflectance = 0.10000000149012
  1286. Part85.Rotation = Vector3.new(138.369995, -89.6699982, 140.099991)
  1287. Part85.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1288. Part85.Velocity = Vector3.new(15.5070686, -14.4672928, 1.01208389)
  1289. Part85.Size = Vector3.new(10.1000004, 1, 0.99000001)
  1290. Part85.CFrame = CFrame.new(52.1630363, 25.4045525, -59.2429199, -0.00272716419, -0.00228036777, -0.999983907, 0.0301391147, 0.999536812, -0.00236152788, 0.999536514, -0.030145349, -0.00265722303)
  1291. Part85.BottomSurface = Enum.SurfaceType.Smooth
  1292. Part85.TopSurface = Enum.SurfaceType.Smooth
  1293. Part85.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1294. Part85.Position = Vector3.new(52.1630363, 25.4045525, -59.2429199)
  1295. Part85.Orientation = Vector3.new(0.140000001, -90.1500015, 1.73000002)
  1296. Part85.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1297. SpecialMesh86.Parent = Part85
  1298. SpecialMesh86.MeshType = Enum.MeshType.Wedge
  1299. Part87.Parent = Model0
  1300. Part87.BrickColor = BrickColor.new("Mid gray")
  1301. Part87.Reflectance = 0.10000000149012
  1302. Part87.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1303. Part87.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1304. Part87.Velocity = Vector3.new(15.5369377, -14.5752716, 1.03349018)
  1305. Part87.Size = Vector3.new(1, 1, 4.59000015)
  1306. Part87.CFrame = CFrame.new(49.3505135, 25.5365887, -54.6524429, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1307. Part87.BottomSurface = Enum.SurfaceType.Smooth
  1308. Part87.TopSurface = Enum.SurfaceType.Smooth
  1309. Part87.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1310. Part87.Position = Vector3.new(49.3505135, 25.5365887, -54.6524429)
  1311. Part87.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1312. Part87.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1313. Part88.Parent = Model0
  1314. Part88.BrickColor = BrickColor.new("Mid gray")
  1315. Part88.Reflectance = 0.10000000149012
  1316. Part88.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1317. Part88.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1318. Part88.Velocity = Vector3.new(15.5978384, -14.461586, 1.01393461)
  1319. Part88.Size = Vector3.new(1.99000001, 1, 1)
  1320. Part88.CFrame = CFrame.new(52.1539154, 24.0438805, -54.5997925, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1321. Part88.BottomSurface = Enum.SurfaceType.Smooth
  1322. Part88.TopSurface = Enum.SurfaceType.Smooth
  1323. Part88.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1324. Part88.Position = Vector3.new(52.1539154, 24.0438805, -54.5997925)
  1325. Part88.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1326. Part88.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1327. Part89.Parent = Model0
  1328. Part89.BrickColor = BrickColor.new("Mid gray")
  1329. Part89.Reflectance = 0.10000000149012
  1330. Part89.Rotation = Vector3.new(-41.6299973, 89.7900009, -50.0999985)
  1331. Part89.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1332. Part89.Velocity = Vector3.new(15.5072794, -14.580781, 1.0335753)
  1333. Part89.Size = Vector3.new(1, 1, 4.59000015)
  1334. Part89.CFrame = CFrame.new(49.3630562, 25.3979416, -59.2503204, 0.00228062016, 0.00272719329, 0.999993324, -0.999542534, -0.0301392656, 0.00236178562, 0.0301455129, -0.999541759, 0.00265712291)
  1335. Part89.BottomSurface = Enum.SurfaceType.Smooth
  1336. Part89.TopSurface = Enum.SurfaceType.Smooth
  1337. Part89.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1338. Part89.Position = Vector3.new(49.3630562, 25.3979416, -59.2503204)
  1339. Part89.Orientation = Vector3.new(-0.140000001, 89.8499985, -91.7299957)
  1340. Part89.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1341. Part90.Parent = Model0
  1342. Part90.BrickColor = BrickColor.new("Mid gray")
  1343. Part90.Reflectance = 0.10000000149012
  1344. Part90.Rotation = Vector3.new(-41.6299973, 89.6699982, 39.9099998)
  1345. Part90.RotVelocity = Vector3.new(-0.00130878447, 0.0076724994, 0.0405282564)
  1346. Part90.Velocity = Vector3.new(15.5074902, -14.6942692, 1.05506682)
  1347. Part90.Size = Vector3.new(10.1000004, 1, 0.99000001)
  1348. Part90.CFrame = CFrame.new(46.5630798, 25.3913307, -59.2577515, 0.00272716419, -0.00228084647, 0.999983907, -0.0301390998, 0.999536812, 0.00236200634, -0.999536514, -0.0301453341, 0.00265720859)
  1349. Part90.BottomSurface = Enum.SurfaceType.Smooth
  1350. Part90.TopSurface = Enum.SurfaceType.Smooth
  1351. Part90.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1352. Part90.Position = Vector3.new(46.5630798, 25.3913307, -59.2577515)
  1353. Part90.Orientation = Vector3.new(-0.140000001, 89.8499985, -1.73000002)
  1354. Part90.Color = Color3.new(0.803922, 0.803922, 0.803922)
  1355. SpecialMesh91.Parent = Part90
  1356. SpecialMesh91.MeshType = Enum.MeshType.Wedge
  1357. for i,v in pairs(mas:GetChildren()) do
  1358. v.Parent = game:GetService("Players").LocalPlayer.Character
  1359. pcall(function() v:MakeJoints() end)
  1360. end
  1361. mas:Destroy()
  1362. for i,v in pairs(cors) do
  1363. spawn(function()
  1364. pcall(v)
  1365. end)
  1366. end
  1367. for i,v in pairs(Model0:GetChildren()) do
  1368. if v.ClassName == "Part" then
  1369. v.CanCollide = false
  1370. end
  1371. end
  1372. Part8.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,100,0)-- * CFrame.fromEulerAnglesXYZ(0,math.pi/2,math.pi/2)
  1373. --Part8.Anchored = true
  1374. for i = 1,30 do
  1375. Part8.CFrame = Part8.CFrame * CFrame.new(0,-2,0)
  1376. game:GetService("RunService").RenderStepped:wait()
  1377. end
  1378. local wry = Instance.new("Sound", Part8)
  1379. wry.SoundId = "rbxassetid://252754492"
  1380. wry:Play()
  1381. wry.Volume = 6
  1382. Part8.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,2,0)
  1383. Part8.Anchored = true
  1384. humanoidofplr.PlatformStand = true
  1385. allahu:Stop()
  1386. pepsihit:Play()
  1387. --Converted with ttyyuu12345's model to script plugin v4
  1388. local function sandbox(var,func)
  1389. local env = getfenv(func)
  1390. local newenv = setmetatable({},{
  1391. __index = function(self,k)
  1392. if k=="script" then
  1393. return var
  1394. else
  1395. return env[k]
  1396. end
  1397. end,
  1398. })
  1399. setfenv(func,newenv)
  1400. return func
  1401. end
  1402. local cors = {}
  1403. local mas = Instance.new("Model",game:GetService("Lighting"))
  1404. local Part01 = Instance.new("Part")
  1405. local SpecialMesh1 = Instance.new("SpecialMesh")
  1406. Part01.Parent = mas
  1407. Part01.Size = Vector3.new(13.4299994, 29.1300011, 14.3699951)
  1408. Part01.CFrame = CFrame.new(-25.3050022, 14.5650053, 8.03499794, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1409. Part01.Position = Vector3.new(-25.3050022, 14.5650053, 8.03499794)
  1410. Part01.Anchored = true
  1411. Part01.CanCollide = false
  1412. SpecialMesh1.Parent = Part01
  1413. SpecialMesh1.MeshId = "rbxassetid://10470609"
  1414. SpecialMesh1.Scale = Vector3.new(30, 30, 30)
  1415. SpecialMesh1.TextureId = "rbxassetid://10549894"
  1416. SpecialMesh1.MeshType = Enum.MeshType.FileMesh
  1417. SpecialMesh1.Scale = Vector3.new(30, 30, 30)
  1418. for i,v in pairs(mas:GetChildren()) do
  1419. v.Parent = game:GetService("Players").LocalPlayer.Character
  1420. pcall(function() v:MakeJoints() end)
  1421. end
  1422. mas:Destroy()
  1423. for i,v in pairs(cors) do
  1424. spawn(function()
  1425. pcall(v)
  1426. end)
  1427. end
  1428. Part01.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,100,0) * CFrame.fromEulerAnglesXYZ(0,math.pi/2,math.pi/2)
  1429. for i = 1,50 do
  1430. Part01.CFrame = Part01.CFrame * CFrame.new(-2,0,0)
  1431. wait()
  1432. end
  1433. pepsihit:Play()
  1434. pepsi:Play()
  1435. wait(1.4)
  1436. explo:Play()
  1437. erection:Play()
  1438. --runninin90:Play()
  1439.  
  1440. bass:Play()
  1441. pepsi:Stop()
  1442. -- Objects
  1443.  
  1444. local ScreenGui = Instance.new("ScreenGui")
  1445. local TextLabel = Instance.new("TextLabel")
  1446.  
  1447. -- Properties
  1448.  
  1449. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  1450.  
  1451. TextLabel.Parent = ScreenGui
  1452. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1453. TextLabel.BackgroundTransparency = 1
  1454. TextLabel.Size = UDim2.new(1, 1, 1, 1)
  1455. TextLabel.Font = Enum.Font.Arial
  1456. TextLabel.FontSize = Enum.FontSize.Size10
  1457. TextLabel.Text = "ULTIMATE CLUSTERFUCK"
  1458. TextLabel.TextSize = 10
  1459. TextLabel.TextWrapped = true
  1460. local ball1 = Instance.new("Part", game.Players.LocalPlayer.Character)
  1461. ball1.Size = Vector3.new(6,6,6)
  1462. ball1.Material = "Neon"
  1463. ball1.Anchored = true
  1464. ball1.Transparency = 0.3
  1465. ball1.BrickColor = BrickColor.new("New Yeller")
  1466. ball1.CanCollide = false
  1467. ball1.CFrame = Part01.CFrame
  1468. local ball11 = Instance.new("Part", game.Players.LocalPlayer.Character)
  1469. ball11.Size = Vector3.new(6,6,6)
  1470. ball11.Material = "Neon"
  1471. ball11.Anchored = true
  1472. ball11.Transparency = 0.3
  1473. ball11.BrickColor = BrickColor.new("Maroon")
  1474. ball11.CanCollide = false
  1475. ball11.CFrame = Part01.CFrame
  1476. local cf = ball1.CFrame
  1477. ball1:BreakJoints()
  1478. local cfval = 0
  1479. local cfval1 = 0
  1480. humanoidofplr.JumpPower = 65
  1481. humanoidrootpart:destroy()
  1482. rlegweld:destroy()
  1483. llegweld:destroy()
  1484. lhandweld:destroy()
  1485. rhandweld:destroy()
  1486. headweld:destroy()
  1487. heed.Parent = game.Players.LocalPlayer.Character.Torso
  1488. rootjointclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  1489. lhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  1490. rhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  1491. llegclone.Parent = game.Players.LocalPlayer.Character.Torso
  1492. rlegclone.Parent = game.Players.LocalPlayer.Character.Torso
  1493. bodyps:destroy()
  1494. humanoid.Parent.Head.Anchored = false
  1495. local bodypsvel1 = Instance.new("BodyVelocity", humanoid.Parent.Head)
  1496. bodypsvel1.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1497. bodypsvel1.Velocity = Vector3.new(math.random(-70,70),30,math.random(-70,70))
  1498. local bodypsvel11 = Instance.new("BodyVelocity", game.Players.LocalPlayer.Character.Torso)
  1499. bodypsvel11.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1500. bodypsvel11.Velocity = Vector3.new(math.random(-70,70),30,math.random(-70,70))
  1501. humanoid.Parent:BreakJoints()
  1502. humanoidofplr.PlatformStand = true
  1503. game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(Part01.Position,game.Players.LocalPlayer.Character.Torso.Position)
  1504. game.Players.LocalPlayer.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0)
  1505. wait(0.1)
  1506. bodypsvel1:destroy()
  1507. bodypsvel11:destroy()
  1508. for i = 1,25 do
  1509. TextLabel.TextColor3 = Color3.fromRGB(math.random(1,255),math.random(1,255),math.random(1,255))
  1510. TextLabel.Visible = true
  1511. TextLabel.Rotation = TextLabel.Rotation + 0.4
  1512. TextLabel.TextSize = TextLabel.TextSize + 1
  1513. humanoidofplr.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1514. cfval1 = cfval1 - 1
  1515. cfval = cfval + 1
  1516. ball1.BrickColor = BrickColor.Random()
  1517. ball1.Size = ball1.Size + Vector3.new(1,1,1)
  1518. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  1519. --
  1520. ball11.BrickColor = BrickColor.Random()
  1521. ball11.Size = ball1.Size + Vector3.new(0.1,0.1,0.1)
  1522. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  1523. wait()
  1524. ball1.BrickColor = BrickColor.Random()
  1525. ball11.BrickColor = BrickColor.Random()
  1526. humanoidofplr.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1527. cfval1 = cfval1 - 1
  1528. cfval = cfval + 1
  1529. ball1.Size = ball1.Size + Vector3.new(1,1,1)
  1530. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  1531. --
  1532. ball11.Size = ball1.Size + Vector3.new(0.1,0.1,0.1)
  1533. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  1534. TextLabel.Visible = false
  1535. TextLabel.Rotation = TextLabel.Rotation + 0.4
  1536. TextLabel.TextSize = TextLabel.TextSize + 1
  1537. wait()
  1538. end
  1539. bass:Play()
  1540. for i = 1,25 do
  1541. TextLabel.TextColor3 = Color3.fromRGB(math.random(1,255),math.random(1,255),math.random(1,255))
  1542. TextLabel.Visible = true
  1543. TextLabel.Rotation = TextLabel.Rotation + 0.4
  1544. TextLabel.TextSize = TextLabel.TextSize + 1
  1545. humanoidofplr.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1546. cfval1 = cfval1 - 1
  1547. cfval = cfval + 1
  1548. ball1.BrickColor = BrickColor.Random()
  1549. ball1.Size = ball1.Size + Vector3.new(1,1,1)
  1550. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  1551. --
  1552. ball11.BrickColor = BrickColor.Random()
  1553. ball11.Size = ball1.Size + Vector3.new(0.1,0.1,0.1)
  1554. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  1555. wait()
  1556. ball1.BrickColor = BrickColor.Random()
  1557. ball11.BrickColor = BrickColor.Random()
  1558. humanoidofplr.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1559. cfval1 = cfval1 - 1
  1560. cfval = cfval + 1
  1561. ball1.Size = ball1.Size + Vector3.new(1,1,1)
  1562. ball1.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval,cfval + math.random(-1,1))
  1563. --
  1564. ball11.Size = ball1.Size + Vector3.new(0.1,0.1,0.1)
  1565. ball11.CFrame = cf * CFrame.fromEulerAnglesXYZ(0,cfval1,cfval1 + math.random(-1,1))
  1566. TextLabel.Visible = false
  1567. TextLabel.Rotation = TextLabel.Rotation + 0.4
  1568. TextLabel.TextSize = TextLabel.TextSize + 1
  1569. wait()
  1570. end
  1571. humanoidofplr.PlatformStand = false
  1572. ball1:destroy()
  1573. ScreenGui:destroy()
  1574. ball11:destroy()
  1575. erection:Stop()
  1576. Part01:destroy()
  1577. Model0:destroy()
  1578. humanoidofplr.CameraOffset = Vector3.new(0,0,0)
  1579. wait(2)
  1580. bass:Stop()
  1581. for i,v in pairs(humanoidofplr.Parent:GetChildren()) do
  1582. if v.ClassName == "Part" then
  1583. v.Anchored = true
  1584. end
  1585. end
  1586. -- Objects
  1587.  
  1588. local ScreenGui = Instance.new("ScreenGui")
  1589. local ImageLabel = Instance.new("ImageLabel")
  1590.  
  1591. -- Properties
  1592.  
  1593. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  1594.  
  1595. ImageLabel.Parent = ScreenGui
  1596. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1597. ImageLabel.BackgroundTransparency = 1
  1598. ImageLabel.Position = UDim2.new(-0.000247940421, 0, 0.0192930661, 0)
  1599. ImageLabel.Size = UDim2.new(0, 919, 0, 760)
  1600. ImageLabel.Image = "rbxassetid://1216401562"
  1601. local screamer = Instance.new("Sound", ScreenGui)
  1602. screamer.SoundId = "rbxassetid://153400584"
  1603. screamer:Play()
  1604. screamer.Volume = 10
  1605. wait(3)
  1606. runninin90:Play()
  1607. erection:Play()
  1608. pepsi:Play()
  1609. local aaaah = Instance.new("Sound", ScreenGui)
  1610. aaaah.SoundId = "rbxassetid://276709204"
  1611. aaaah:Play()
  1612. aaaah.Volume = 10
  1613. for i = 1,100 do
  1614. ImageLabel.Position = ImageLabel.Position - UDim2.new(0,25,0,15) + UDim2.new(0,math.random(-20,20),0,math.random(-20,20))
  1615. ImageLabel.Size = ImageLabel.Size + UDim2.new(0,50,0,50)
  1616. wait()
  1617. end
  1618. ScreenGui:Destroy()
  1619. erection:Stop()
  1620. runninin90:Stop()
  1621. pepsi:Stop()
  1622. for i,v in pairs(humanoidofplr.Parent:GetChildren()) do
  1623. if v.ClassName == "Part" then
  1624. v.Anchored = false
  1625. end
  1626. end
  1627. using = false
  1628. else
  1629. humanoid.Parent.Head.CFrame = CFrame.new(humanoid.Parent.Head.Position, game.Players.LocalPlayer.Character.Torso.Position)
  1630. humanoid.Parent.Head.Anchored = true
  1631. local bodyps = Instance.new("BodyPosition", game.Players.LocalPlayer.Character.Torso)
  1632. bodyps.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1633. bodyps.Position = game.Players.LocalPlayer.Character.Torso.Position
  1634. humanoidofplr.JumpPower = 0
  1635. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  1636. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1637. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1638. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  1639. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  1640. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  1641. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1642. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1643. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  1644. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  1645. local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  1646. game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
  1647. local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1648. llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1649. llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  1650. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
  1651. local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  1652. game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
  1653. local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1654. rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1655. rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  1656. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
  1657. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  1658. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  1659. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1660. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  1661. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  1662. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  1663. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1664. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1665. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  1666. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  1667. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  1668. erection:Play()
  1669. llegweld.C0 = 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)
  1670. rlegweld.C0 = 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)
  1671. lhandweld.C0 = 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)
  1672. rhandweld.C0 = 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)
  1673. humanoidrootpart.C0 = 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()
  1674. headweld.C0 = 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)
  1675. for i = 1,25 do
  1676. local mathran = math.random(1,2)
  1677. humanoid.Health = humanoid.Health - 2
  1678. kicksound:Play()
  1679. if mathran == 1 then
  1680. llegweld.C0 = 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)
  1681. rlegweld.C0 = 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)
  1682. lhandweld.C0 = 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)
  1683. rhandweld.C0 = 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)
  1684. humanoidrootpart.C0 = 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()
  1685. headweld.C0 = 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)
  1686. end
  1687. if mathran == 2 then
  1688. llegweld.C0 = 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)
  1689. rlegweld.C0 = CFrame.new(1.89274311, -0.858413935, 7.62939453e-06, 0.10452839, -0.994525194, -1.15483999e-07, 0.994527876, 0.104528576, -1.54780309e-06, -1.55139548e-06, -4.69373873e-08, 1.00000584)
  1690. lhandweld.C0 = 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)
  1691. rhandweld.C0 = CFrame.new(2.22284222, 0.414411545, 0, -0.406726152, -0.913553655, -1.15483999e-07, 0.913556159, -0.406727403, -1.54780309e-06, -1.36702647e-06, 7.35030596e-07, 1.00000584)
  1692. humanoidrootpart.C0 = 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()
  1693. headweld.C0 = 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)
  1694. end
  1695. wait(0.04)
  1696. humanoidrootpart.C0 = CFrame.new(0, 0, 0, 0.0341443829, -0.207913235, -0.977556467, 0.00725775072, 0.978153586, -0.207789525, 0.99939394, -1.72760117e-08, 0.034907084):inverse()
  1697. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
  1698. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
  1699. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  1700. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  1701. wait(0.04)
  1702. end
  1703. humanoid.Health = humanoid.Health - 5
  1704. erection:Stop()
  1705. BOOM:Play()
  1706. explo2:Play()
  1707. bodyps:destroy()
  1708. humanoid.Parent.Head.Anchored = false
  1709. headweld.C0 = CFrame.new(0, 1.50000024, 0, 1, -2.77679039e-28, -8.22939696e-27, -2.70105974e-27, 0.978154778, 0.207912564, 7.87598728e-27, -0.207912564, 0.978154778)
  1710. humanoidrootpart.C0 = CFrame.new(0, 0, 0, 1, -4.29140332e-28, 1.46412584e-27, -1.76704843e-28, 0.913548112, 0.406731218, -1.51461294e-27, -0.406731218, 0.913548112):inverse()
  1711. rlegweld.C0 = CFrame.new(0.5, -1.17737412, -0.674467087, 1, 7.57306469e-28, 2.5243549e-28, 3.02922588e-28, 0.92718792, 0.374602854, -1.31266455e-27, -0.374602854, 0.92718792)
  1712. llegweld.C0 = CFrame.new(-0.5, -1.95082164, 0.459226608, 1, 4.54383881e-28, -3.63507105e-27, 1.1864468e-27, 0.913548112, 0.406731218, 3.48360976e-27, -0.406731218, 0.913548112)
  1713. lhandweld.C0 = CFrame.new(-1.5, 0, 0.45791626, 1, 4.80460114e-22, -3.37716629e-22, -2.65673535e-22, 0.882948399, 0.469470233, 5.23747954e-22, -0.469470233, 0.882948399)
  1714. rhandweld.C0 = CFrame.new(1.5, 0, 0.45791626, 1, 4.80460114e-22, -3.37716629e-22, -2.65673535e-22, 0.882948399, 0.469470233, 5.23747954e-22, -0.469470233, 0.882948399)
  1715. local bodypsvel = Instance.new("BodyVelocity", game.Players.LocalPlayer.Character.Torso)
  1716. bodypsvel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1717. bodypsvel.Velocity = Vector3.new(0,55,0)
  1718. humanoid.Parent.Head.CFrame = humanoid.Parent.Head.CFrame * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0)
  1719. local bodypsvel1 = Instance.new("BodyVelocity", humanoid.Parent.Head)
  1720. bodypsvel1.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1721. bodypsvel1.Velocity = humanoid.Parent.Head.CFrame.upVector * 45
  1722. wait(0.1)
  1723. bodypsvel:destroy()
  1724. bodypsvel1:destroy()
  1725. wait(0.3)
  1726. humanoidofplr.JumpPower = 65
  1727. humanoidrootpart:destroy()
  1728. rlegweld:destroy()
  1729. llegweld:destroy()
  1730. lhandweld:destroy()
  1731. rhandweld:destroy()
  1732. headweld:destroy()
  1733. heed.Parent = game.Players.LocalPlayer.Character.Torso
  1734. rootjointclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  1735. lhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  1736. rhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  1737. llegclone.Parent = game.Players.LocalPlayer.Character.Torso
  1738. rlegclone.Parent = game.Players.LocalPlayer.Character.Torso
  1739. using = false
  1740. end
  1741. using = false
  1742. end
  1743. end
  1744. sensoryee2.Touched:connect(rapidkick)
  1745. wait(0.2)
  1746. if not hittd then
  1747. sensoryee2:destroy()
  1748. using = false
  1749. end
  1750. end
  1751. end
  1752. mouse.KeyDown:connect(kicking)
  1753. candur = true
  1754. function cancer(key)
  1755. key = key:lower()
  1756. if key == "f" and not using then
  1757. using = true
  1758. local scarceisfatthatsafact = Instance.new("Sound", humanoidofplr.Parent.Head)
  1759. scarceisfatthatsafact.SoundId = "rbxassetid://519967074"
  1760. scarceisfatthatsafact:Play()
  1761. scarceisfatthatsafact.Volume = 10
  1762. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  1763. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1764. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1765. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  1766. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  1767. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  1768. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1769. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1770. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  1771. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  1772. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  1773. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  1774. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  1775. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  1776. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  1777. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  1778. local bass = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  1779. bass.SoundId = "rbxassetid://1087356234"
  1780. bass.Volume = 16
  1781. bass:Play()
  1782. for i = 1,14 do
  1783. for i = 0,1 , 0.3 do
  1784. headweld.C0 = headweld.C0:lerp(CFrame.new(0.238277435, 1.38430595, -0.26462841, 0.743157983, 0.206764504, -0.636368334, 1.30437893e-05, 0.951053917, 0.309025198, 0.66911602, -0.229662865, 0.706780493),i)
  1785. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.11354065, 0.72611165, -9.53674316e-06, -0.241926044, 0.970294714, -2.11314546e-05, -0.970294774, -0.241926029, -1.76227277e-05, -2.22114886e-05, 1.6240343e-05, 1),i)
  1786. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.17133522, 0.705098152, -0.729599953, -0.219563439, 0.706936955, 0.6723333, 0.941907823, -0.0259357486, 0.334868789, 0.25416863, 0.706800878, -0.660174847),i)
  1787. game:GetService("RunService").RenderStepped:wait()
  1788. end
  1789. for i = 0,1 , 0.3 do
  1790. headweld.C0 = headweld.C0:lerp(CFrame.new(0,1.5,0),i)
  1791. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1),i)
  1792. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1),i)
  1793. game:GetService("RunService").RenderStepped:wait()
  1794. end
  1795. for i = 0,1 , 0.3 do
  1796. headweld.C0 = headweld.C0:lerp(CFrame.new(0.238277435, 1.38430595, -0.26462841, 0.743157983, 0.206764504, -0.636368334, 1.30437893e-05, 0.951053917, 0.309025198, 0.66911602, -0.229662865, 0.706780493),i)
  1797. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-2.11354065, 0.72611165, -9.53674316e-06, -0.241926044, 0.970294714, -2.11314546e-05, -0.970294774, -0.241926029, -1.76227277e-05, -2.22114886e-05, 1.6240343e-05, 1),i)
  1798. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.17133522, 0.705098152, -0.729599953, -0.219563439, 0.706936955, 0.6723333, 0.941907823, -0.0259357486, 0.334868789, 0.25416863, 0.706800878, -0.660174847),i)
  1799. game:GetService("RunService").RenderStepped:wait()
  1800. end
  1801. for i = 0,1 , 0.3 do
  1802. headweld.C0 = headweld.C0:lerp(CFrame.new(0,1.5,0),i)
  1803. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1),i)
  1804. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1),i)
  1805. game:GetService("RunService").RenderStepped:wait()
  1806. end
  1807. end
  1808. lhandweld:destroy()
  1809. rhandweld:destroy()
  1810. headweld:destroy()
  1811. heed.Parent = game.Players.LocalPlayer.Character.Torso
  1812. lhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  1813. rhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  1814. using = false
  1815. end
  1816. end
  1817. mouse.KeyDown:connect(cancer)
  1818. function putdurex(key)
  1819. if key == "z" and not using and candur then
  1820. using = true
  1821. candur = false
  1822. --Converted with ttyyuu12345's model to script plugin v4
  1823. function sandbox(var,func)
  1824. local env = getfenv(func)
  1825. local newenv = setmetatable({},{
  1826. __index = function(self,k)
  1827. if k=="script" then
  1828. return var
  1829. else
  1830. return env[k]
  1831. end
  1832. end,
  1833. })
  1834. setfenv(func,newenv)
  1835. return func
  1836. end
  1837. cors = {}
  1838. mas = Instance.new("Model",game:GetService("Lighting"))
  1839. Model0 = Instance.new("Model")
  1840. Part1 = Instance.new("Part")
  1841. Part2 = Instance.new("Part")
  1842. Part3 = Instance.new("Part")
  1843. Weld4 = Instance.new("Weld")
  1844. Weld5 = Instance.new("Weld")
  1845. Weld6 = Instance.new("Weld")
  1846. Weld7 = Instance.new("Weld")
  1847. Weld8 = Instance.new("Weld")
  1848. Weld9 = Instance.new("Weld")
  1849. Weld10 = Instance.new("Weld")
  1850. Weld11 = Instance.new("Weld")
  1851. Weld12 = Instance.new("Weld")
  1852. Weld13 = Instance.new("Weld")
  1853. Weld14 = Instance.new("Weld")
  1854. Weld15 = Instance.new("Weld")
  1855. Weld16 = Instance.new("Weld")
  1856. Weld17 = Instance.new("Weld")
  1857. Weld18 = Instance.new("Weld")
  1858. Weld19 = Instance.new("Weld")
  1859. Weld20 = Instance.new("Weld")
  1860. Weld21 = Instance.new("Weld")
  1861. Weld22 = Instance.new("Weld")
  1862. Weld23 = Instance.new("Weld")
  1863. Weld24 = Instance.new("Weld")
  1864. Weld25 = Instance.new("Weld")
  1865. Weld26 = Instance.new("Weld")
  1866. Weld27 = Instance.new("Weld")
  1867. Weld28 = Instance.new("Weld")
  1868. Weld29 = Instance.new("Weld")
  1869. Weld30 = Instance.new("Weld")
  1870. Weld31 = Instance.new("Weld")
  1871. Weld32 = Instance.new("Weld")
  1872. Weld33 = Instance.new("Weld")
  1873. Weld34 = Instance.new("Weld")
  1874. Weld35 = Instance.new("Weld")
  1875. Weld36 = Instance.new("Weld")
  1876. Weld37 = Instance.new("Weld")
  1877. Weld38 = Instance.new("Weld")
  1878. Weld39 = Instance.new("Weld")
  1879. Weld40 = Instance.new("Weld")
  1880. Weld41 = Instance.new("Weld")
  1881. Weld42 = Instance.new("Weld")
  1882. Weld43 = Instance.new("Weld")
  1883. Weld44 = Instance.new("Weld")
  1884. Weld45 = Instance.new("Weld")
  1885. Weld46 = Instance.new("Weld")
  1886. Weld47 = Instance.new("Weld")
  1887. Weld48 = Instance.new("Weld")
  1888. Weld49 = Instance.new("Weld")
  1889. Weld50 = Instance.new("Weld")
  1890. Weld51 = Instance.new("Weld")
  1891. Weld52 = Instance.new("Weld")
  1892. Weld53 = Instance.new("Weld")
  1893. Weld54 = Instance.new("Weld")
  1894. Part55 = Instance.new("Part")
  1895. Part56 = Instance.new("Part")
  1896. Part57 = Instance.new("Part")
  1897. Part58 = Instance.new("Part")
  1898. Part59 = Instance.new("Part")
  1899. Part60 = Instance.new("Part")
  1900. Part61 = Instance.new("Part")
  1901. Part62 = Instance.new("Part")
  1902. Part63 = Instance.new("Part")
  1903. Part64 = Instance.new("Part")
  1904. Part65 = Instance.new("Part")
  1905. Part66 = Instance.new("Part")
  1906. Part67 = Instance.new("Part")
  1907. Part68 = Instance.new("Part")
  1908. Part69 = Instance.new("Part")
  1909. Part70 = Instance.new("Part")
  1910. Part71 = Instance.new("Part")
  1911. Part72 = Instance.new("Part")
  1912. Part73 = Instance.new("Part")
  1913. Part74 = Instance.new("Part")
  1914. Part75 = Instance.new("Part")
  1915. Part76 = Instance.new("Part")
  1916. Part77 = Instance.new("Part")
  1917. Part78 = Instance.new("Part")
  1918. Part79 = Instance.new("Part")
  1919. Part80 = Instance.new("Part")
  1920. Part81 = Instance.new("Part")
  1921. Part82 = Instance.new("Part")
  1922. Part83 = Instance.new("Part")
  1923. Part84 = Instance.new("Part")
  1924. Part85 = Instance.new("Part")
  1925. Part86 = Instance.new("Part")
  1926. Part87 = Instance.new("Part")
  1927. Part88 = Instance.new("Part")
  1928. Part89 = Instance.new("Part")
  1929. Part90 = Instance.new("Part")
  1930. Part91 = Instance.new("Part")
  1931. Part92 = Instance.new("Part")
  1932. Part93 = Instance.new("Part")
  1933. Part94 = Instance.new("Part")
  1934. Part95 = Instance.new("Part")
  1935. Part96 = Instance.new("Part")
  1936. Part97 = Instance.new("Part")
  1937. Part98 = Instance.new("Part")
  1938. Part99 = Instance.new("Part")
  1939. Part100 = Instance.new("Part")
  1940. Part101 = Instance.new("Part")
  1941. Part102 = Instance.new("Part")
  1942. Part103 = Instance.new("Part")
  1943. SurfaceGui104 = Instance.new("SurfaceGui")
  1944. Frame105 = Instance.new("Frame")
  1945. TextLabel106 = Instance.new("TextLabel")
  1946. Model0.Name = "Itsatrap"
  1947. Model0.Parent = mas
  1948. Part1.Name = "Part11"
  1949. Part1.Parent = Model0
  1950. Part1.Size = Vector3.new(0.239999995, 0.229999945, 2.38999963)
  1951. Part1.CFrame = CFrame.new(8.81010056, 0.113986701, -16.0149269, 1, -6.91378009e-05, 6.88330765e-05, 6.91356545e-05, 1, 3.12162374e-05, -6.88352375e-05, -3.12114789e-05, 1)
  1952. Part1.BottomSurface = Enum.SurfaceType.Smooth
  1953. Part1.TopSurface = Enum.SurfaceType.Smooth
  1954. Part1.Position = Vector3.new(8.81010056, 0.113986701, -16.0149269)
  1955. Part2.Name = "Part22"
  1956. Part2.Parent = Model0
  1957. Part2.Rotation = Vector3.new(0, 90, 0)
  1958. Part2.Size = Vector3.new(0.239999995, 0.229999945, 1.55999959)
  1959. Part2.CFrame = CFrame.new(7.90016842, 0.113953359, -14.9398594, -6.88330765e-05, -6.91378009e-05, 1, -3.12162374e-05, 1, 6.91356545e-05, -1, -3.12114789e-05, -6.88352375e-05)
  1960. Part2.BottomSurface = Enum.SurfaceType.Smooth
  1961. Part2.TopSurface = Enum.SurfaceType.Smooth
  1962. Part2.Position = Vector3.new(7.90016842, 0.113953359, -14.9398594)
  1963. Part2.Orientation = Vector3.new(0, 90, 0)
  1964. Part3.Name = "Part33"
  1965. Part3.Parent = Model0
  1966. Part3.Rotation = Vector3.new(180, 0, 180)
  1967. Part3.Size = Vector3.new(0.239999995, 0.229999945, 2.29999948)
  1968. Part3.CFrame = CFrame.new(7.00009441, 0.123857737, -16.0097961, -1, -6.91378009e-05, -6.88330765e-05, -6.91356545e-05, 1, -3.12162374e-05, 6.88352375e-05, -3.12114789e-05, -1)
  1969. Part3.BottomSurface = Enum.SurfaceType.Smooth
  1970. Part3.TopSurface = Enum.SurfaceType.Smooth
  1971. Part3.Position = Vector3.new(7.00009441, 0.123857737, -16.0097961)
  1972. Part3.Orientation = Vector3.new(0, -180, 0)
  1973. Weld4.Parent = Part3
  1974. Weld4.C0 = CFrame.new(-2.14496326, 0.453607529, 0.00461673737, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  1975. Weld4.Part0 = Part3
  1976. Weld4.Part1 = Part101
  1977. Weld5.Parent = Part3
  1978. Weld5.C0 = CFrame.new(-0.298399925, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  1979. Weld5.Part0 = Part3
  1980. Weld5.Part1 = Part60
  1981. Weld6.Parent = Part3
  1982. Weld6.C0 = CFrame.new(-0.078438282, 0.295003802, 0.770341873, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  1983. Weld6.Part0 = Part3
  1984. Weld6.Part1 = Part61
  1985. Weld7.Parent = Part3
  1986. Weld7.C0 = CFrame.new(-0.078438282, 0.295003802, 0.423992157, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  1987. Weld7.Part0 = Part3
  1988. Weld7.Part1 = Part62
  1989. Weld8.Parent = Part3
  1990. Weld8.C0 = CFrame.new(-1.77716732, 0.294999987, -0.0850915909, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  1991. Weld8.Part0 = Part3
  1992. Weld8.Part1 = Part73
  1993. Weld9.Parent = Part3
  1994. Weld9.C0 = CFrame.new(-0.078438282, 0.295003802, 0.00461769104, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  1995. Weld9.Part0 = Part3
  1996. Weld9.Part1 = Part63
  1997. Weld10.Parent = Part3
  1998. Weld10.C0 = CFrame.new(-1.5323267, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  1999. Weld10.Part0 = Part3
  2000. Weld10.Part1 = Part70
  2001. Weld11.Parent = Part3
  2002. Weld11.C0 = CFrame.new(-1.81000614, -0.00999601185, 0.00500583649, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2003. Weld11.Part0 = Part3
  2004. Weld11.Part1 = Part1
  2005. Weld12.Parent = Part3
  2006. Weld12.C0 = CFrame.new(-2.15995693, 1.08908594, 0.0946159363, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2007. Weld12.Part0 = Part3
  2008. Weld12.Part1 = Part103
  2009. Weld13.Parent = Part3
  2010. Weld13.C0 = CFrame.new(-0.899999619, -0.00999999791, -1.06999874, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2011. Weld13.Part0 = Part3
  2012. Weld13.Part1 = Part2
  2013. Weld14.Parent = Part3
  2014. Weld14.C0 = CFrame.new(-1.11046886, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2015. Weld14.Part0 = Part3
  2016. Weld14.Part1 = Part58
  2017. Weld15.Parent = Part3
  2018. Weld15.C0 = CFrame.new(-3.55315304, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2019. Weld15.Part0 = Part3
  2020. Weld15.Part1 = Part85
  2021. Weld16.Parent = Part3
  2022. Weld16.C0 = CFrame.new(-2.7410841, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2023. Weld16.Part0 = Part3
  2024. Weld16.Part1 = Part88
  2025. Weld17.Parent = Part3
  2026. Weld17.C0 = CFrame.new(-4.21985149, 0.294999987, 0.751420975, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2027. Weld17.Part0 = Part3
  2028. Weld17.Part1 = Part80
  2029. Weld18.Parent = Part3
  2030. Weld18.C0 = CFrame.new(-3.34268379, -0.00999999791, -1.06999874, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2031. Weld18.Part0 = Part3
  2032. Weld18.Part1 = Part86
  2033. Weld19.Parent = Part3
  2034. Weld19.C0 = CFrame.new(-2.52112198, 0.295003802, 0.770341873, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2035. Weld19.Part0 = Part3
  2036. Weld19.Part1 = Part76
  2037. Weld20.Parent = Part3
  2038. Weld20.C0 = CFrame.new(-2.52112198, 0.295003802, 0.423992157, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2039. Weld20.Part0 = Part3
  2040. Weld20.Part1 = Part84
  2041. Weld21.Parent = Part3
  2042. Weld21.C0 = CFrame.new(-4.21985149, 0.294999987, -0.0850915909, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2043. Weld21.Part0 = Part3
  2044. Weld21.Part1 = Part78
  2045. Weld22.Parent = Part3
  2046. Weld22.C0 = CFrame.new(-2.44268417, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2047. Weld22.Part0 = Part3
  2048. Weld22.Part1 = Part92
  2049. Weld23.Parent = Part3
  2050. Weld23.C0 = CFrame.new(-2.52112198, 0.295003802, 0.00461769104, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2051. Weld23.Part0 = Part3
  2052. Weld23.Part1 = Part77
  2053. Weld24.Parent = Part3
  2054. Weld24.C0 = CFrame.new(-3.97501087, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2055. Weld24.Part0 = Part3
  2056. Weld24.Part1 = Part90
  2057. Weld25.Parent = Part3
  2058. Weld25.C0 = CFrame.new(-4.25269032, -0.00999601185, 0.00500583649, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2059. Weld25.Part0 = Part3
  2060. Weld25.Part1 = Part79
  2061. Weld26.Parent = Part3
  2062. Weld26.C0 = CFrame.new(-4.00769043, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2063. Weld26.Part0 = Part3
  2064. Weld26.Part1 = Part82
  2065. Weld27.Parent = Part3
  2066. Weld27.C0 = CFrame.new(-4.21985149, 0.294999987, -0.538676262, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2067. Weld27.Part0 = Part3
  2068. Weld27.Part1 = Part87
  2069. Weld28.Parent = Part3
  2070. Weld28.C0 = CFrame.new(-2.71768379, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2071. Weld28.Part0 = Part3
  2072. Weld28.Part1 = Part91
  2073. Weld29.Parent = Part3
  2074. Weld29.C0 = CFrame.new(-4.21985149, 0.294999987, -0.968995094, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2075. Weld29.Part0 = Part3
  2076. Weld29.Part1 = Part83
  2077. Weld30.Parent = Part3
  2078. Weld30.C0 = CFrame.new(-3.34268379, -0.00999999791, 1.09500122, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2079. Weld30.Part0 = Part3
  2080. Weld30.Part1 = Part89
  2081. Weld31.Parent = Part3
  2082. Weld31.C0 = CFrame.new(-3.12551308, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2083. Weld31.Part0 = Part3
  2084. Weld31.Part1 = Part99
  2085. Weld32.Parent = Part3
  2086. Weld32.C0 = CFrame.new(-2.52112198, 0.295003802, -0.347056389, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2087. Weld32.Part0 = Part3
  2088. Weld32.Part1 = Part93
  2089. Weld33.Parent = Part3
  2090. Weld33.C0 = CFrame.new(-3.55315304, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2091. Weld33.Part0 = Part3
  2092. Weld33.Part1 = Part81
  2093. Weld34.Parent = Part3
  2094. Weld34.C0 = CFrame.new(-2.52112198, 0.295003802, -0.347056389, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2095. Weld34.Part0 = Part3
  2096. Weld34.Part1 = Part95
  2097. Weld35.Parent = Part3
  2098. Weld35.C0 = CFrame.new(-1.77716732, 0.294999987, 0.751420975, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2099. Weld35.Part0 = Part3
  2100. Weld35.Part1 = Part75
  2101. Weld36.Parent = Part3
  2102. Weld36.C0 = CFrame.new(-3.60523796, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2103. Weld36.Part0 = Part3
  2104. Weld36.Part1 = Part97
  2105. Weld37.Parent = Part3
  2106. Weld37.C0 = CFrame.new(-2.52112198, 0.295003802, -0.743832588, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2107. Weld37.Part0 = Part3
  2108. Weld37.Part1 = Part98
  2109. Weld38.Parent = Part3
  2110. Weld38.C0 = CFrame.new(-3.1476841, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2111. Weld38.Part0 = Part3
  2112. Weld38.Part1 = Part94
  2113. Weld39.Parent = Part3
  2114. Weld39.C0 = CFrame.new(-4.21985149, 0.294999987, 0.358469009, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2115. Weld39.Part0 = Part3
  2116. Weld39.Part1 = Part96
  2117. Weld40.Parent = Part3
  2118. Weld40.C0 = CFrame.new(-2.22612095, 0.0860501826, 0.00461769104, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2119. Weld40.Part0 = Part3
  2120. Weld40.Part1 = Part100
  2121. Weld41.Parent = Part3
  2122. Weld41.C0 = CFrame.new(-1.11046886, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2123. Weld41.Part0 = Part3
  2124. Weld41.Part1 = Part57
  2125. Weld42.Parent = Part3
  2126. Weld42.C0 = CFrame.new(-1.56500626, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2127. Weld42.Part0 = Part3
  2128. Weld42.Part1 = Part56
  2129. Weld43.Parent = Part3
  2130. Weld43.C0 = CFrame.new(-1.77716732, 0.294999987, -0.538676262, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2131. Weld43.Part0 = Part3
  2132. Weld43.Part1 = Part72
  2133. Weld44.Parent = Part3
  2134. Weld44.C0 = CFrame.new(-0.274999142, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2135. Weld44.Part0 = Part3
  2136. Weld44.Part1 = Part68
  2137. Weld45.Parent = Part3
  2138. Weld45.C0 = CFrame.new(-1.77716732, 0.294999987, -0.968995094, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2139. Weld45.Part0 = Part3
  2140. Weld45.Part1 = Part71
  2141. Weld46.Parent = Part3
  2142. Weld46.C0 = CFrame.new(-0.899999619, -0.00999999791, 1.09500122, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2143. Weld46.Part0 = Part3
  2144. Weld46.Part1 = Part55
  2145. Weld47.Parent = Part3
  2146. Weld47.C0 = CFrame.new(-0.682828426, 0.295003802, 1.07500648, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2147. Weld47.Part0 = Part3
  2148. Weld47.Part1 = Part59
  2149. Weld48.Parent = Part3
  2150. Weld48.C0 = CFrame.new(-0.078438282, 0.295003802, -0.347056389, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2151. Weld48.Part0 = Part3
  2152. Weld48.Part1 = Part65
  2153. Weld49.Parent = Part3
  2154. Weld49.C0 = CFrame.new(-0.078438282, 0.295003802, -0.347056389, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2155. Weld49.Part0 = Part3
  2156. Weld49.Part1 = Part64
  2157. Weld50.Parent = Part3
  2158. Weld50.C0 = CFrame.new(-0.078438282, 0.295003802, -0.743832588, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2159. Weld50.Part0 = Part3
  2160. Weld50.Part1 = Part66
  2161. Weld51.Parent = Part3
  2162. Weld51.C0 = CFrame.new(-0.704999447, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2163. Weld51.Part0 = Part3
  2164. Weld51.Part1 = Part67
  2165. Weld52.Parent = Part3
  2166. Weld52.C0 = CFrame.new(-1.16255379, 0.294999987, -1.03499889, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2167. Weld52.Part0 = Part3
  2168. Weld52.Part1 = Part69
  2169. Weld53.Parent = Part3
  2170. Weld53.C0 = CFrame.new(-1.77716732, 0.294999987, 0.358469009, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2171. Weld53.Part0 = Part3
  2172. Weld53.Part1 = Part74
  2173. Weld54.Parent = Part3
  2174. Weld54.C0 = CFrame.new(-2.15995693, 0.72362113, 0.0946159363, 0, -1, 0, 0, 0, -1, 1, 0, 0)
  2175. Weld54.Part0 = Part3
  2176. Weld54.Part1 = Part102
  2177. Part55.Name = "Part44"
  2178. Part55.Parent = Model0
  2179. Part55.Rotation = Vector3.new(0, 90, 0)
  2180. Part55.Size = Vector3.new(0.290000021, 0.229999945, 1.55999959)
  2181. Part55.CFrame = CFrame.new(7.90001917, 0.113885775, -17.1048584, -6.88330765e-05, -6.91378009e-05, 1, -3.12162374e-05, 1, 6.91356545e-05, -1, -3.12114789e-05, -6.88352375e-05)
  2182. Part55.BottomSurface = Enum.SurfaceType.Smooth
  2183. Part55.TopSurface = Enum.SurfaceType.Smooth
  2184. Part55.Position = Vector3.new(7.90001917, 0.113885775, -17.1048584)
  2185. Part55.Orientation = Vector3.new(0, 90, 0)
  2186. Part56.Name = "Part55"
  2187. Part56.Parent = Model0
  2188. Part56.Rotation = Vector3.new(90, 0, -90)
  2189. Part56.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2190. Part56.CFrame = CFrame.new(8.56500626, 0.418936193, -17.084919, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2191. Part56.BottomSurface = Enum.SurfaceType.Smooth
  2192. Part56.TopSurface = Enum.SurfaceType.Smooth
  2193. Part56.Position = Vector3.new(8.56500626, 0.418936193, -17.084919)
  2194. Part56.Orientation = Vector3.new(90, 90, 0)
  2195. Part57.Name = "Part66"
  2196. Part57.Parent = Model0
  2197. Part57.Rotation = Vector3.new(90, 0, -90)
  2198. Part57.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2199. Part57.CFrame = CFrame.new(8.11046886, 0.418904752, -17.0848885, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2200. Part57.BottomSurface = Enum.SurfaceType.Smooth
  2201. Part57.TopSurface = Enum.SurfaceType.Smooth
  2202. Part57.Position = Vector3.new(8.11046886, 0.418904752, -17.0848885)
  2203. Part57.Orientation = Vector3.new(90, 90, 0)
  2204. Part58.Name = "Part77"
  2205. Part58.Parent = Model0
  2206. Part58.Rotation = Vector3.new(90, 0, -90)
  2207. Part58.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2208. Part58.CFrame = CFrame.new(8.11046886, 0.418904752, -17.0848885, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2209. Part58.BottomSurface = Enum.SurfaceType.Smooth
  2210. Part58.TopSurface = Enum.SurfaceType.Smooth
  2211. Part58.Position = Vector3.new(8.11046886, 0.418904752, -17.0848885)
  2212. Part58.Orientation = Vector3.new(90, 90, 0)
  2213. Part59.Name = "Part88"
  2214. Part59.Parent = Model0
  2215. Part59.Rotation = Vector3.new(90, 0, -90)
  2216. Part59.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2217. Part59.CFrame = CFrame.new(7.68282843, 0.418875188, -17.0848579, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2218. Part59.BottomSurface = Enum.SurfaceType.Smooth
  2219. Part59.TopSurface = Enum.SurfaceType.Smooth
  2220. Part59.Position = Vector3.new(7.68282843, 0.418875188, -17.0848579)
  2221. Part59.Orientation = Vector3.new(90, 90, 0)
  2222. Part60.Name = "Part99"
  2223. Part60.Parent = Model0
  2224. Part60.Rotation = Vector3.new(90, 0, -90)
  2225. Part60.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2226. Part60.CFrame = CFrame.new(7.29839993, 0.418848604, -17.0848331, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2227. Part60.BottomSurface = Enum.SurfaceType.Smooth
  2228. Part60.TopSurface = Enum.SurfaceType.Smooth
  2229. Part60.Position = Vector3.new(7.29839993, 0.418848604, -17.0848331)
  2230. Part60.Orientation = Vector3.new(90, 90, 0)
  2231. Part61.Name = "Part1010"
  2232. Part61.Parent = Model0
  2233. Part61.Rotation = Vector3.new(90, 0, -90)
  2234. Part61.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2235. Part61.CFrame = CFrame.new(7.07845926, 0.418842912, -16.7801533, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2236. Part61.BottomSurface = Enum.SurfaceType.Smooth
  2237. Part61.TopSurface = Enum.SurfaceType.Smooth
  2238. Part61.Position = Vector3.new(7.07845926, 0.418842912, -16.7801533)
  2239. Part61.Orientation = Vector3.new(90, 90, 0)
  2240. Part62.Name = "Part1111"
  2241. Part62.Parent = Model0
  2242. Part62.Rotation = Vector3.new(90, 0, -90)
  2243. Part62.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2244. Part62.CFrame = CFrame.new(7.0784831, 0.41885373, -16.4338036, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2245. Part62.BottomSurface = Enum.SurfaceType.Smooth
  2246. Part62.TopSurface = Enum.SurfaceType.Smooth
  2247. Part62.Position = Vector3.new(7.0784831, 0.41885373, -16.4338036)
  2248. Part62.Orientation = Vector3.new(90, 90, 0)
  2249. Part63.Name = "Part1212"
  2250. Part63.Parent = Model0
  2251. Part63.Rotation = Vector3.new(90, 0, -90)
  2252. Part63.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2253. Part63.CFrame = CFrame.new(7.07851219, 0.418866813, -16.0144291, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2254. Part63.BottomSurface = Enum.SurfaceType.Smooth
  2255. Part63.TopSurface = Enum.SurfaceType.Smooth
  2256. Part63.Position = Vector3.new(7.07851219, 0.418866813, -16.0144291)
  2257. Part63.Orientation = Vector3.new(90, 90, 0)
  2258. Part64.Name = "Part1313"
  2259. Part64.Parent = Model0
  2260. Part64.Rotation = Vector3.new(90, 0, -90)
  2261. Part64.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2262. Part64.CFrame = CFrame.new(7.07853603, 0.41887781, -15.6627541, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2263. Part64.BottomSurface = Enum.SurfaceType.Smooth
  2264. Part64.TopSurface = Enum.SurfaceType.Smooth
  2265. Part64.Position = Vector3.new(7.07853603, 0.41887781, -15.6627541)
  2266. Part64.Orientation = Vector3.new(90, 90, 0)
  2267. Part65.Name = "Part1414"
  2268. Part65.Parent = Model0
  2269. Part65.Rotation = Vector3.new(90, 0, -90)
  2270. Part65.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2271. Part65.CFrame = CFrame.new(7.07853603, 0.41887781, -15.6627541, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2272. Part65.BottomSurface = Enum.SurfaceType.Smooth
  2273. Part65.TopSurface = Enum.SurfaceType.Smooth
  2274. Part65.Position = Vector3.new(7.07853603, 0.41887781, -15.6627541)
  2275. Part65.Orientation = Vector3.new(90, 90, 0)
  2276. Part66.Name = "Part1515"
  2277. Part66.Parent = Model0
  2278. Part66.Rotation = Vector3.new(90, 0, -90)
  2279. Part66.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2280. Part66.CFrame = CFrame.new(7.07856369, 0.418890178, -15.2659779, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2281. Part66.BottomSurface = Enum.SurfaceType.Smooth
  2282. Part66.TopSurface = Enum.SurfaceType.Smooth
  2283. Part66.Position = Vector3.new(7.07856369, 0.418890178, -15.2659779)
  2284. Part66.Orientation = Vector3.new(90, 90, 0)
  2285. Part67.Name = "Part1616"
  2286. Part67.Parent = Model0
  2287. Part67.Rotation = Vector3.new(90, 0, 180)
  2288. Part67.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2289. Part67.CFrame = CFrame.new(7.70514488, 0.418938756, -14.9748554, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2290. Part67.BottomSurface = Enum.SurfaceType.Smooth
  2291. Part67.TopSurface = Enum.SurfaceType.Smooth
  2292. Part67.Position = Vector3.new(7.70514488, 0.418938756, -14.9748554)
  2293. Part67.Orientation = Vector3.new(90, -180, 0)
  2294. Part68.Name = "Part1717"
  2295. Part68.Parent = Model0
  2296. Part68.Rotation = Vector3.new(90, 0, 180)
  2297. Part68.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2298. Part68.CFrame = CFrame.new(7.27514458, 0.418909043, -14.9748249, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2299. Part68.BottomSurface = Enum.SurfaceType.Smooth
  2300. Part68.TopSurface = Enum.SurfaceType.Smooth
  2301. Part68.Position = Vector3.new(7.27514458, 0.418909043, -14.9748249)
  2302. Part68.Orientation = Vector3.new(90, -180, 0)
  2303. Part69.Name = "Part1818"
  2304. Part69.Parent = Model0
  2305. Part69.Rotation = Vector3.new(90, 0, 180)
  2306. Part69.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2307. Part69.CFrame = CFrame.new(8.16269875, 0.418970406, -14.9748869, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2308. Part69.BottomSurface = Enum.SurfaceType.Smooth
  2309. Part69.TopSurface = Enum.SurfaceType.Smooth
  2310. Part69.Position = Vector3.new(8.16269875, 0.418970406, -14.9748869)
  2311. Part69.Orientation = Vector3.new(90, -180, 0)
  2312. Part70.Name = "Part1919"
  2313. Part70.Parent = Model0
  2314. Part70.Rotation = Vector3.new(90, 0, 180)
  2315. Part70.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2316. Part70.CFrame = CFrame.new(8.53247166, 0.418995976, -14.9749117, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2317. Part70.BottomSurface = Enum.SurfaceType.Smooth
  2318. Part70.TopSurface = Enum.SurfaceType.Smooth
  2319. Part70.Position = Vector3.new(8.53247166, 0.418995976, -14.9749117)
  2320. Part70.Orientation = Vector3.new(90, -180, 0)
  2321. Part71.Name = "Part2020"
  2322. Part71.Parent = Model0
  2323. Part71.Rotation = Vector3.new(90, 0, 180)
  2324. Part71.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2325. Part71.CFrame = CFrame.new(8.77730846, 0.419010848, -15.0409327, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2326. Part71.BottomSurface = Enum.SurfaceType.Smooth
  2327. Part71.TopSurface = Enum.SurfaceType.Smooth
  2328. Part71.Position = Vector3.new(8.77730846, 0.419010848, -15.0409327)
  2329. Part71.Orientation = Vector3.new(90, -180, 0)
  2330. Part72.Name = "Part2121"
  2331. Part72.Parent = Model0
  2332. Part72.Rotation = Vector3.new(90, 0, 180)
  2333. Part72.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2334. Part72.CFrame = CFrame.new(8.7772789, 0.418997407, -15.4712515, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2335. Part72.BottomSurface = Enum.SurfaceType.Smooth
  2336. Part72.TopSurface = Enum.SurfaceType.Smooth
  2337. Part72.Position = Vector3.new(8.7772789, 0.418997407, -15.4712515)
  2338. Part72.Orientation = Vector3.new(90, -180, 0)
  2339. Part73.Name = "Part2222"
  2340. Part73.Parent = Model0
  2341. Part73.Rotation = Vector3.new(90, 0, 180)
  2342. Part73.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2343. Part73.CFrame = CFrame.new(8.77724743, 0.418983251, -15.9248362, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2344. Part73.BottomSurface = Enum.SurfaceType.Smooth
  2345. Part73.TopSurface = Enum.SurfaceType.Smooth
  2346. Part73.Position = Vector3.new(8.77724743, 0.418983251, -15.9248362)
  2347. Part73.Orientation = Vector3.new(90, -180, 0)
  2348. Part74.Name = "Part2323"
  2349. Part74.Parent = Model0
  2350. Part74.Rotation = Vector3.new(90, 0, 180)
  2351. Part74.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2352. Part74.CFrame = CFrame.new(8.77721691, 0.418969423, -16.3683968, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2353. Part74.BottomSurface = Enum.SurfaceType.Smooth
  2354. Part74.TopSurface = Enum.SurfaceType.Smooth
  2355. Part74.Position = Vector3.new(8.77721691, 0.418969423, -16.3683968)
  2356. Part74.Orientation = Vector3.new(90, -180, 0)
  2357. Part75.Name = "Part2424"
  2358. Part75.Parent = Model0
  2359. Part75.Rotation = Vector3.new(90, 0, 180)
  2360. Part75.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2361. Part75.CFrame = CFrame.new(8.77718925, 0.418957144, -16.7613487, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2362. Part75.BottomSurface = Enum.SurfaceType.Smooth
  2363. Part75.TopSurface = Enum.SurfaceType.Smooth
  2364. Part75.Position = Vector3.new(8.77718925, 0.418957144, -16.7613487)
  2365. Part75.Orientation = Vector3.new(90, -180, 0)
  2366. Part76.Name = "Part2525"
  2367. Part76.Parent = Model0
  2368. Part76.Rotation = Vector3.new(90, 0, -90)
  2369. Part76.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2370. Part76.CFrame = CFrame.new(9.52114296, 0.419011801, -16.7803211, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2371. Part76.BottomSurface = Enum.SurfaceType.Smooth
  2372. Part76.TopSurface = Enum.SurfaceType.Smooth
  2373. Part76.Position = Vector3.new(9.52114296, 0.419011801, -16.7803211)
  2374. Part76.Orientation = Vector3.new(90, 90, 0)
  2375. Part77.Name = "Part2626"
  2376. Part77.Parent = Model0
  2377. Part77.Rotation = Vector3.new(90, 0, -90)
  2378. Part77.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2379. Part77.CFrame = CFrame.new(9.52119541, 0.419035703, -16.0145969, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2380. Part77.BottomSurface = Enum.SurfaceType.Smooth
  2381. Part77.TopSurface = Enum.SurfaceType.Smooth
  2382. Part77.Position = Vector3.new(9.52119541, 0.419035703, -16.0145969)
  2383. Part77.Orientation = Vector3.new(90, 90, 0)
  2384. Part78.Name = "Part2727"
  2385. Part78.Parent = Model0
  2386. Part78.Rotation = Vector3.new(90, 0, 180)
  2387. Part78.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2388. Part78.CFrame = CFrame.new(11.2199306, 0.419152111, -15.925004, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2389. Part78.BottomSurface = Enum.SurfaceType.Smooth
  2390. Part78.TopSurface = Enum.SurfaceType.Smooth
  2391. Part78.Position = Vector3.new(11.2199306, 0.419152111, -15.925004)
  2392. Part78.Orientation = Vector3.new(90, -180, 0)
  2393. Part79.Name = "Part2828"
  2394. Part79.Parent = Model0
  2395. Part79.Size = Vector3.new(0.239999995, 0.229999945, 2.38999963)
  2396. Part79.CFrame = CFrame.new(11.2527847, 0.114155583, -16.0150948, 1, -6.91378009e-05, 6.88330765e-05, 6.91356545e-05, 1, 3.12162374e-05, -6.88352375e-05, -3.12114789e-05, 1)
  2397. Part79.BottomSurface = Enum.SurfaceType.Smooth
  2398. Part79.TopSurface = Enum.SurfaceType.Smooth
  2399. Part79.Position = Vector3.new(11.2527847, 0.114155583, -16.0150948)
  2400. Part80.Name = "Part2929"
  2401. Part80.Parent = Model0
  2402. Part80.Rotation = Vector3.new(90, 0, 180)
  2403. Part80.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2404. Part80.CFrame = CFrame.new(11.2198734, 0.419126004, -16.7615166, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2405. Part80.BottomSurface = Enum.SurfaceType.Smooth
  2406. Part80.TopSurface = Enum.SurfaceType.Smooth
  2407. Part80.Position = Vector3.new(11.2198734, 0.419126004, -16.7615166)
  2408. Part80.Orientation = Vector3.new(90, -180, 0)
  2409. Part81.Name = "Part3030"
  2410. Part81.Parent = Model0
  2411. Part81.Rotation = Vector3.new(90, 0, -90)
  2412. Part81.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2413. Part81.CFrame = CFrame.new(10.553153, 0.419073641, -17.0850563, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2414. Part81.BottomSurface = Enum.SurfaceType.Smooth
  2415. Part81.TopSurface = Enum.SurfaceType.Smooth
  2416. Part81.Position = Vector3.new(10.553153, 0.419073641, -17.0850563)
  2417. Part81.Orientation = Vector3.new(90, 90, 0)
  2418. Part82.Name = "Part3131"
  2419. Part82.Parent = Model0
  2420. Part82.Rotation = Vector3.new(90, 0, -90)
  2421. Part82.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2422. Part82.CFrame = CFrame.new(11.0076904, 0.419105053, -17.0850868, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2423. Part82.BottomSurface = Enum.SurfaceType.Smooth
  2424. Part82.TopSurface = Enum.SurfaceType.Smooth
  2425. Part82.Position = Vector3.new(11.0076904, 0.419105053, -17.0850868)
  2426. Part82.Orientation = Vector3.new(90, 90, 0)
  2427. Part83.Name = "Part3232"
  2428. Part83.Parent = Model0
  2429. Part83.Rotation = Vector3.new(90, 0, 180)
  2430. Part83.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2431. Part83.CFrame = CFrame.new(11.2199917, 0.419179708, -15.0411005, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2432. Part83.BottomSurface = Enum.SurfaceType.Smooth
  2433. Part83.TopSurface = Enum.SurfaceType.Smooth
  2434. Part83.Position = Vector3.new(11.2199917, 0.419179708, -15.0411005)
  2435. Part83.Orientation = Vector3.new(90, -180, 0)
  2436. Part84.Name = "Part3333"
  2437. Part84.Parent = Model0
  2438. Part84.Rotation = Vector3.new(90, 0, -90)
  2439. Part84.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2440. Part84.CFrame = CFrame.new(9.5211668, 0.41902262, -16.4339714, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2441. Part84.BottomSurface = Enum.SurfaceType.Smooth
  2442. Part84.TopSurface = Enum.SurfaceType.Smooth
  2443. Part84.Position = Vector3.new(9.5211668, 0.41902262, -16.4339714)
  2444. Part84.Orientation = Vector3.new(90, 90, 0)
  2445. Part85.Name = "Part3434"
  2446. Part85.Parent = Model0
  2447. Part85.Rotation = Vector3.new(90, 0, -90)
  2448. Part85.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2449. Part85.CFrame = CFrame.new(10.553153, 0.419073641, -17.0850563, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2450. Part85.BottomSurface = Enum.SurfaceType.Smooth
  2451. Part85.TopSurface = Enum.SurfaceType.Smooth
  2452. Part85.Position = Vector3.new(10.553153, 0.419073641, -17.0850563)
  2453. Part85.Orientation = Vector3.new(90, 90, 0)
  2454. Part86.Name = "Part3535"
  2455. Part86.Parent = Model0
  2456. Part86.Rotation = Vector3.new(0, 90, 0)
  2457. Part86.Size = Vector3.new(0.239999995, 0.229999945, 1.55999959)
  2458. Part86.CFrame = CFrame.new(10.3428526, 0.114122242, -14.9400272, -6.88330765e-05, -6.91378009e-05, 1, -3.12162374e-05, 1, 6.91356545e-05, -1, -3.12114789e-05, -6.88352375e-05)
  2459. Part86.BottomSurface = Enum.SurfaceType.Smooth
  2460. Part86.TopSurface = Enum.SurfaceType.Smooth
  2461. Part86.Position = Vector3.new(10.3428526, 0.114122242, -14.9400272)
  2462. Part86.Orientation = Vector3.new(0, 90, 0)
  2463. Part87.Name = "Part3636"
  2464. Part87.Parent = Model0
  2465. Part87.Rotation = Vector3.new(90, 0, 180)
  2466. Part87.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2467. Part87.CFrame = CFrame.new(11.2199631, 0.419166267, -15.4714193, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2468. Part87.BottomSurface = Enum.SurfaceType.Smooth
  2469. Part87.TopSurface = Enum.SurfaceType.Smooth
  2470. Part87.Position = Vector3.new(11.2199631, 0.419166267, -15.4714193)
  2471. Part87.Orientation = Vector3.new(90, -180, 0)
  2472. Part88.Name = "Part3737"
  2473. Part88.Parent = Model0
  2474. Part88.Rotation = Vector3.new(90, 0, -90)
  2475. Part88.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2476. Part88.CFrame = CFrame.new(9.7410841, 0.419017494, -17.085001, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2477. Part88.BottomSurface = Enum.SurfaceType.Smooth
  2478. Part88.TopSurface = Enum.SurfaceType.Smooth
  2479. Part88.Position = Vector3.new(9.7410841, 0.419017494, -17.085001)
  2480. Part88.Orientation = Vector3.new(90, 90, 0)
  2481. Part89.Name = "Part3838"
  2482. Part89.Parent = Model0
  2483. Part89.Rotation = Vector3.new(0, 90, 0)
  2484. Part89.Size = Vector3.new(0.290000021, 0.229999945, 1.55999959)
  2485. Part89.CFrame = CFrame.new(10.3427038, 0.114054658, -17.1050262, -6.88330765e-05, -6.91378009e-05, 1, -3.12162374e-05, 1, 6.91356545e-05, -1, -3.12114789e-05, -6.88352375e-05)
  2486. Part89.BottomSurface = Enum.SurfaceType.Smooth
  2487. Part89.TopSurface = Enum.SurfaceType.Smooth
  2488. Part89.Position = Vector3.new(10.3427038, 0.114054658, -17.1050262)
  2489. Part89.Orientation = Vector3.new(0, 90, 0)
  2490. Part90.Name = "Part3939"
  2491. Part90.Parent = Model0
  2492. Part90.Rotation = Vector3.new(90, 0, 180)
  2493. Part90.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2494. Part90.CFrame = CFrame.new(10.9751558, 0.419164836, -14.9750805, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2495. Part90.BottomSurface = Enum.SurfaceType.Smooth
  2496. Part90.TopSurface = Enum.SurfaceType.Smooth
  2497. Part90.Position = Vector3.new(10.9751558, 0.419164836, -14.9750805)
  2498. Part90.Orientation = Vector3.new(90, -180, 0)
  2499. Part91.Name = "Part4040"
  2500. Part91.Parent = Model0
  2501. Part91.Rotation = Vector3.new(90, 0, 180)
  2502. Part91.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2503. Part91.CFrame = CFrame.new(9.71782875, 0.419077933, -14.9749937, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2504. Part91.BottomSurface = Enum.SurfaceType.Smooth
  2505. Part91.TopSurface = Enum.SurfaceType.Smooth
  2506. Part91.Position = Vector3.new(9.71782875, 0.419077933, -14.9749937)
  2507. Part91.Orientation = Vector3.new(90, -180, 0)
  2508. Part92.Name = "Part4141"
  2509. Part92.Parent = Model0
  2510. Part92.Rotation = Vector3.new(180, 0, 180)
  2511. Part92.Size = Vector3.new(0.239999995, 0.229999945, 2.29999948)
  2512. Part92.CFrame = CFrame.new(9.44277859, 0.124026611, -16.009964, -1, -6.91378009e-05, -6.88330765e-05, -6.91356545e-05, 1, -3.12162374e-05, 6.88352375e-05, -3.12114789e-05, -1)
  2513. Part92.BottomSurface = Enum.SurfaceType.Smooth
  2514. Part92.TopSurface = Enum.SurfaceType.Smooth
  2515. Part92.Position = Vector3.new(9.44277859, 0.124026611, -16.009964)
  2516. Part92.Orientation = Vector3.new(0, -180, 0)
  2517. Part93.Name = "Part4242"
  2518. Part93.Parent = Model0
  2519. Part93.Rotation = Vector3.new(90, 0, -90)
  2520. Part93.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2521. Part93.CFrame = CFrame.new(9.52121925, 0.4190467, -15.6629229, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2522. Part93.BottomSurface = Enum.SurfaceType.Smooth
  2523. Part93.TopSurface = Enum.SurfaceType.Smooth
  2524. Part93.Position = Vector3.new(9.52121925, 0.4190467, -15.6629229)
  2525. Part93.Orientation = Vector3.new(90, 90, 0)
  2526. Part94.Name = "Part4343"
  2527. Part94.Parent = Model0
  2528. Part94.Rotation = Vector3.new(90, 0, 180)
  2529. Part94.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2530. Part94.CFrame = CFrame.new(10.1478291, 0.419107646, -14.9750233, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2531. Part94.BottomSurface = Enum.SurfaceType.Smooth
  2532. Part94.TopSurface = Enum.SurfaceType.Smooth
  2533. Part94.Position = Vector3.new(10.1478291, 0.419107646, -14.9750233)
  2534. Part94.Orientation = Vector3.new(90, -180, 0)
  2535. Part95.Name = "Part4444"
  2536. Part95.Parent = Model0
  2537. Part95.Rotation = Vector3.new(90, 0, -90)
  2538. Part95.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2539. Part95.CFrame = CFrame.new(9.52121925, 0.4190467, -15.6629229, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2540. Part95.BottomSurface = Enum.SurfaceType.Smooth
  2541. Part95.TopSurface = Enum.SurfaceType.Smooth
  2542. Part95.Position = Vector3.new(9.52121925, 0.4190467, -15.6629229)
  2543. Part95.Orientation = Vector3.new(90, 90, 0)
  2544. Part96.Name = "Part4545"
  2545. Part96.Parent = Model0
  2546. Part96.Rotation = Vector3.new(90, 0, 180)
  2547. Part96.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2548. Part96.CFrame = CFrame.new(11.2199001, 0.419138283, -16.3685646, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2549. Part96.BottomSurface = Enum.SurfaceType.Smooth
  2550. Part96.TopSurface = Enum.SurfaceType.Smooth
  2551. Part96.Position = Vector3.new(11.2199001, 0.419138283, -16.3685646)
  2552. Part96.Orientation = Vector3.new(90, -180, 0)
  2553. Part97.Name = "Part4646"
  2554. Part97.Parent = Model0
  2555. Part97.Rotation = Vector3.new(90, 0, 180)
  2556. Part97.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2557. Part97.CFrame = CFrame.new(10.6053829, 0.419139266, -14.9750547, -1, -6.88330765e-05, 6.91378009e-05, -6.91356545e-05, -3.12162374e-05, -1, 6.88352375e-05, -1, 3.12114789e-05)
  2558. Part97.BottomSurface = Enum.SurfaceType.Smooth
  2559. Part97.TopSurface = Enum.SurfaceType.Smooth
  2560. Part97.Position = Vector3.new(10.6053829, 0.419139266, -14.9750547)
  2561. Part97.Orientation = Vector3.new(90, -180, 0)
  2562. Part98.Name = "Part4747"
  2563. Part98.Parent = Model0
  2564. Part98.Rotation = Vector3.new(90, 0, -90)
  2565. Part98.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2566. Part98.CFrame = CFrame.new(9.52124691, 0.419059068, -15.2661467, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2567. Part98.BottomSurface = Enum.SurfaceType.Smooth
  2568. Part98.TopSurface = Enum.SurfaceType.Smooth
  2569. Part98.Position = Vector3.new(9.52124691, 0.419059068, -15.2661467)
  2570. Part98.Orientation = Vector3.new(90, 90, 0)
  2571. Part99.Name = "Part4848"
  2572. Part99.Parent = Model0
  2573. Part99.Rotation = Vector3.new(90, 0, -90)
  2574. Part99.Size = Vector3.new(0.290000021, 0.229999945, 0.379999995)
  2575. Part99.CFrame = CFrame.new(10.1255131, 0.419044077, -17.0850277, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2576. Part99.BottomSurface = Enum.SurfaceType.Smooth
  2577. Part99.TopSurface = Enum.SurfaceType.Smooth
  2578. Part99.Position = Vector3.new(10.1255131, 0.419044077, -17.0850277)
  2579. Part99.Orientation = Vector3.new(90, 90, 0)
  2580. Part100.Name = "Part4949"
  2581. Part100.Parent = Model0
  2582. Part100.Rotation = Vector3.new(90, 0, -90)
  2583. Part100.Size = Vector3.new(0.290000021, 0.819999933, 0.379999995)
  2584. Part100.CFrame = CFrame.new(9.22620964, 0.210061684, -16.0145702, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2585. Part100.BottomSurface = Enum.SurfaceType.Smooth
  2586. Part100.TopSurface = Enum.SurfaceType.Smooth
  2587. Part100.Position = Vector3.new(9.22620964, 0.210061684, -16.0145702)
  2588. Part100.Orientation = Vector3.new(90, 90, 0)
  2589. Part101.Name = "Part5050"
  2590. Part101.Parent = Model0
  2591. Part101.Rotation = Vector3.new(90, 0, -90)
  2592. Part101.Size = Vector3.new(0.290000021, 0.409999967, 0.48999992)
  2593. Part101.CFrame = CFrame.new(9.14502621, 0.577613413, -16.0145741, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2594. Part101.BottomSurface = Enum.SurfaceType.Smooth
  2595. Part101.TopSurface = Enum.SurfaceType.Smooth
  2596. Part101.Position = Vector3.new(9.14502621, 0.577613413, -16.0145741)
  2597. Part101.Orientation = Vector3.new(90, 90, 0)
  2598. Part102.Name = "Part5151"
  2599. Part102.Parent = Model0
  2600. Part102.Rotation = Vector3.new(90, 0, -90)
  2601. Part102.Size = Vector3.new(1.30999982, 1.4799993, 0.0500000007)
  2602. Part102.CFrame = CFrame.new(9.15999508, 0.847625196, -16.1045837, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2603. Part102.BottomSurface = Enum.SurfaceType.Smooth
  2604. Part102.TopSurface = Enum.SurfaceType.Smooth
  2605. Part102.Position = Vector3.new(9.15999508, 0.847625196, -16.1045837)
  2606. Part102.Orientation = Vector3.new(90, 90, 0)
  2607. Part103.Name = "Part5252"
  2608. Part103.Parent = Model0
  2609. Part103.BrickColor = BrickColor.new("Really blue")
  2610. Part103.Rotation = Vector3.new(90, 0, -90)
  2611. Part103.Size = Vector3.new(1.30999982, 1.4799993, 0.729997277)
  2612. Part103.CFrame = CFrame.new(9.15996933, 1.21309006, -16.1045952, -6.88330765e-05, 1, 6.91378009e-05, -3.12162374e-05, 6.91356545e-05, -1, -1, -6.88352375e-05, 3.12114789e-05)
  2613. Part103.BottomSurface = Enum.SurfaceType.Smooth
  2614. Part103.TopSurface = Enum.SurfaceType.Smooth
  2615. Part103.Color = Color3.new(0, 0.266667, 1)
  2616. Part103.Position = Vector3.new(9.15996933, 1.21309006, -16.1045952)
  2617. Part103.Orientation = Vector3.new(90, 90, 0)
  2618. Part103.Color = Color3.new(0, 0.266667, 1)
  2619. SurfaceGui104.Parent = Part103
  2620. Frame105.Parent = SurfaceGui104
  2621. Frame105.Size = UDim2.new(0, 413, 0, 126)
  2622. Frame105.Position = UDim2.new(0, 209, 0, 250)
  2623. Frame105.BackgroundColor3 = Color3.new(0, 0.0666667, 0.458824)
  2624. TextLabel106.Parent = Frame105
  2625. TextLabel106.Transparency = 1
  2626. TextLabel106.Size = UDim2.new(1, 1, 1, 1)
  2627. TextLabel106.Text = "durex"
  2628. TextLabel106.BackgroundColor3 = Color3.new(1, 1, 1)
  2629. TextLabel106.BackgroundTransparency = 1
  2630. TextLabel106.Font = Enum.Font.SourceSans
  2631. TextLabel106.FontSize = Enum.FontSize.Size96
  2632. TextLabel106.TextColor3 = Color3.new(0.952941, 0.952941, 0.952941)
  2633. TextLabel106.TextScaled = true
  2634. TextLabel106.TextStrokeColor3 = Color3.new(1, 1, 1)
  2635. TextLabel106.TextWrapped = true
  2636. for i,v in pairs(mas:GetChildren()) do
  2637. v.Parent = workspace
  2638. pcall(function() v:MakeJoints() end)
  2639. end
  2640. mas:Destroy()
  2641. for i,v in pairs(cors) do
  2642. spawn(function()
  2643. pcall(v)
  2644. end)
  2645. end
  2646. Part3.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,0,-5) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0)
  2647. local wow = Instance.new("Sound", humanoidofplr.Parent.Head)
  2648. wow.SoundId = "rbxassetid://168209314"
  2649. wow:Play()
  2650. wow.Volume = 5
  2651. using = false
  2652. local function hagotemxd(part)
  2653. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  2654. if humanoid then
  2655. if humanoid.Parent.Head:findFirstChild("Died") then
  2656. humanoid.Parent.Head.Died.Volume = 10
  2657. humanoid.Parent.Head.Died:Play()
  2658. end
  2659. humanoid.Parent.Head.Anchored = true
  2660. wait(3)
  2661. humanoid.Parent.Head.Anchored = false
  2662. end
  2663. end
  2664. Part103.Touched:connect(hagotemxd)
  2665. wait(5)
  2666. candur = true
  2667. end
  2668. end
  2669. mouse.KeyDown:connect(putdurex)
  2670. function breakitdown(key)
  2671. key = key:lower()
  2672. if key == "r" and not using then
  2673. using = true
  2674. hittd = false
  2675. humanoidofplr.WalkSpeed = 25
  2676. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  2677. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2678. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2679. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  2680. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  2681. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  2682. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2683. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2684. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  2685. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  2686. local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  2687. game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
  2688. local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2689. llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2690. llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  2691. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
  2692. local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  2693. game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
  2694. local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2695. rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2696. rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  2697. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
  2698. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  2699. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  2700. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2701. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  2702. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  2703. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  2704. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2705. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2706. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  2707. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  2708. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  2709. local sensoryee2 = Instance.new("Part", game.Players.LocalPlayer.Character["Right Arm"])
  2710. sensoryee2.Size = Vector3.new(2, 2, 2)
  2711. sensoryee2.CanCollide = false
  2712. sensoryee2.Transparency = 1
  2713. sensoryee2:BreakJoints()
  2714. local weldsensor = Instance.new("Weld", sensoryee2)
  2715. weldsensor.Part0 = sensoryee2
  2716. weldsensor.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  2717. weldsensor.C0 = CFrame.new(0,1,0)
  2718. local doavariable1 = Instance.new("Sound", humanoidofplr.Parent.Head)
  2719. doavariable1.SoundId = "rbxassetid://138152395"
  2720. doavariable1:Play()
  2721. doavariable1.Volume = 5
  2722. local function udidit(part)
  2723. sensoryee2:destroy()
  2724. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  2725. if humanoid then
  2726. hittd = true
  2727. humanoidofplr.WalkSpeed = 0
  2728. local doavariable = Instance.new("Sound", humanoidofplr.Parent.Head)
  2729. doavariable.SoundId = "rbxassetid://130791919"
  2730. doavariable:Play()
  2731. doavariable.Volume = 7
  2732. local aaaaaaaaaaaa = Instance.new("Sound", humanoid.Parent.Head)
  2733. aaaaaaaaaaaa.SoundId = "rbxassetid://987502413"
  2734. aaaaaaaaaaaa.Volume = 7
  2735. aaaaaaaaaaaa.EmitterSize = 45
  2736. doavariable1:Stop()
  2737. humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0)
  2738. for i = 1,8 do
  2739. for i = 0,0.8 , 0.055 do
  2740. humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(humanoidofplr.Parent["Right Leg"].CFrame * CFrame.new(0,-2,0) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0),i)
  2741. llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.533370972, -0.971249819, -0.439774513, 0.970297515, 0.22100696, 0.0983963758, -0.241920963, 0.886412144, 0.394651204, 1.19328513e-06, -0.406732708, 0.91354841),i)
  2742. rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(1.32126427, -1.83161235, 2.86102295e-06, 0.766053081, -0.642779768, 1.1920929e-07, 0.642779469, 0.766052485, -8.56816769e-08, 3.62461279e-08, -1.42261811e-07, 1.00000107),i)
  2743. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.92326164, 0.362828255, 0, 0.173659727, 0.984807372, 1.1920929e-07, -0.984806776, 0.173659831, -8.56816769e-08, 1.05081646e-07, 1.02518563e-07, 1.00000107),i)
  2744. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.94856071, 0.0934052467, 9.53674316e-07, 0.469490677, -0.8829391, 1.1920929e-07, 0.882938683, 0.46949023, -8.56816769e-08, -1.96840375e-08, -1.45481067e-07, 1.00000107),i)
  2745. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0.65600872, 1.07517529, -0.112188339, -0.327925265, 0.518796742, 0.789512634, 0.102082126, 0.850284696, -0.51633215, -0.939182222, -0.0887248442, -0.331792682):inverse(),i)
  2746. headweld.C0 = headweld.C0:lerp(CFrame.new(-1.90734863e-06, 1.5, 0, -0.0697436929, 1.04308128e-07, -0.997570992, -9.27482589e-08, 1.00000095, -9.80788286e-08, 0.997570515, -8.56816769e-08, -0.0697440952),i)
  2747. game:GetService("RunService").RenderStepped:wait()
  2748. end
  2749. pepsihit:Play()
  2750. for i = 0, 0.5 , 0.055 do
  2751. humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(humanoidofplr.Parent.Torso.CFrame * CFrame.new(0,8,0) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0),i)
  2752. game:GetService("RunService").RenderStepped:wait()
  2753. end
  2754. for i = 0,0.8 , 0.055 do
  2755. humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(humanoidofplr.Parent["Right Leg"].CFrame * CFrame.new(0,-2,0) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0),i)
  2756. llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.533370972, -0.971249819, -0.439774513, 0.970297515, 0.22100696, 0.0983963758, -0.241920963, 0.886412144, 0.394651204, 1.19328513e-06, -0.406732708, 0.91354841),i)
  2757. rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(1.32126427, -1.83161235, 2.86102295e-06, 0.766053081, -0.642779768, 1.1920929e-07, 0.642779469, 0.766052485, -8.56816769e-08, 3.62461279e-08, -1.42261811e-07, 1.00000107),i)
  2758. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.92326164, 0.362828255, 0, 0.173659727, 0.984807372, 1.1920929e-07, -0.984806776, 0.173659831, -8.56816769e-08, 1.05081646e-07, 1.02518563e-07, 1.00000107),i)
  2759. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.94856071, 0.0934052467, 9.53674316e-07, 0.469490677, -0.8829391, 1.1920929e-07, 0.882938683, 0.46949023, -8.56816769e-08, -1.96840375e-08, -1.45481067e-07, 1.00000107),i)
  2760. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0.612094879, 1.08399725, 0.221855164, 0.0772710443, 0.484065533, -0.87161392, -0.241601631, 0.857262373, 0.454676479, 0.967294872, 0.175449952, 0.183192551):inverse(),i)
  2761. headweld.C0 = headweld.C0:lerp(CFrame.new(-1.90734863e-06, 1.5, 0, -0.0697436929, 1.04308128e-07, -0.997570992, -9.27482589e-08, 1.00000095, -9.80788286e-08, 0.997570515, -8.56816769e-08, -0.0697440952),i)
  2762. game:GetService("RunService").RenderStepped:wait()
  2763. end
  2764. pepsihit:Play()
  2765. for i = 0, 0.5 , 0.05 do
  2766. humanoid.Parent.Torso.CFrame = humanoid.Parent.Torso.CFrame:lerp(humanoidofplr.Parent.Torso.CFrame * CFrame.new(0,8,0) * CFrame.fromEulerAnglesXYZ(math.pi/2,0,0),i)
  2767. game:GetService("RunService").RenderStepped:wait()
  2768. end
  2769. end
  2770. llegweld.C0 = 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)
  2771. rlegweld.C0 = CFrame.new(1.89274311, -0.858413935, 7.62939453e-06, 0.10452839, -0.994525194, -1.15483999e-07, 0.994527876, 0.104528576, -1.54780309e-06, -1.55139548e-06, -4.69373873e-08, 1.00000584)
  2772. lhandweld.C0 = 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)
  2773. rhandweld.C0 = CFrame.new(2.22284222, 0.414411545, 0, -0.406726152, -0.913553655, -1.15483999e-07, 0.913556159, -0.406727403, -1.54780309e-06, -1.36702647e-06, 7.35030596e-07, 1.00000584)
  2774. humanoidrootpart.C0 = 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()
  2775. headweld.C0 = 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)
  2776. aaaaaaaaaaaa:Play()
  2777. pepsihit:Play()
  2778. doavariable:Stop()
  2779. BOOM:Play()
  2780. local woosh = Instance.new("BodyVelocity", humanoid.Parent.Torso)
  2781. woosh.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  2782. woosh.Velocity = humanoidofplr.Parent.Torso.CFrame.rightVector * 150
  2783. humanoidofplr.WalkSpeed = 25
  2784. wait(0.5)
  2785. humanoidrootpart:destroy()
  2786. rlegweld:destroy()
  2787. llegweld:destroy()
  2788. lhandweld:destroy()
  2789. rhandweld:destroy()
  2790. headweld:destroy()
  2791. heed.Parent = game.Players.LocalPlayer.Character.Torso
  2792. rootjointclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  2793. lhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  2794. rhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  2795. llegclone.Parent = game.Players.LocalPlayer.Character.Torso
  2796. rlegclone.Parent = game.Players.LocalPlayer.Character.Torso
  2797. using = false
  2798. wait(2)
  2799. woosh:destroy()
  2800. end
  2801. end
  2802. sensoryee2.Touched:connect(udidit)
  2803. for i = 0,1 , 0.05 do
  2804. llegweld.C0 = llegweld.C0:lerp(CFrame.new(-0.533370972, -0.971249819, -0.439774513, 0.970297515, 0.22100696, 0.0983963758, -0.241920963, 0.886412144, 0.394651204, 1.19328513e-06, -0.406732708, 0.91354841),i)
  2805. rlegweld.C0 = rlegweld.C0:lerp(CFrame.new(1.32126427, -1.83161235, 2.86102295e-06, 0.766053081, -0.642779768, 1.1920929e-07, 0.642779469, 0.766052485, -8.56816769e-08, 3.62461279e-08, -1.42261811e-07, 1.00000107),i)
  2806. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.92326164, 0.362828255, 0, 0.173659727, 0.984807372, 1.1920929e-07, -0.984806776, 0.173659831, -8.56816769e-08, 1.05081646e-07, 1.02518563e-07, 1.00000107),i)
  2807. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.94856071, 0.0934052467, 9.53674316e-07, 0.469490677, -0.8829391, 1.1920929e-07, 0.882938683, 0.46949023, -8.56816769e-08, -1.96840375e-08, -1.45481067e-07, 1.00000107),i)
  2808. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0.612094879, 1.08399725, 0.221855164, 0.0772710443, 0.484065533, -0.87161392, -0.241601631, 0.857262373, 0.454676479, 0.967294872, 0.175449952, 0.183192551):inverse(),i)
  2809. headweld.C0 = headweld.C0:lerp(CFrame.new(-1.90734863e-06, 1.5, 0, -0.0697436929, 1.04308128e-07, -0.997570992, -9.27482589e-08, 1.00000095, -9.80788286e-08, 0.997570515, -8.56816769e-08, -0.0697440952),i)
  2810. game:GetService("RunService").RenderStepped:wait()
  2811. end
  2812. wait(2)
  2813. if not hittd then
  2814. using = false
  2815. sensoryee2:destroy()
  2816. humanoidofplr.WalkSpeed = 25
  2817. doavariable1:Stop()
  2818. humanoidrootpart:destroy()
  2819. rlegweld:destroy()
  2820. llegweld:destroy()
  2821. lhandweld:destroy()
  2822. rhandweld:destroy()
  2823. headweld:destroy()
  2824. heed.Parent = game.Players.LocalPlayer.Character.Torso
  2825. rootjointclone.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  2826. lhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  2827. rhandclone.Parent = game.Players.LocalPlayer.Character.Torso
  2828. llegclone.Parent = game.Players.LocalPlayer.Character.Torso
  2829. rlegclone.Parent = game.Players.LocalPlayer.Character.Torso
  2830. end
  2831. end
  2832. end
  2833. mouse.KeyDown:connect(breakitdown)
  2834. while true do
  2835. if humanoidofplr.Health < 1 then
  2836. humanoidofplr.WalkSpeed = 0
  2837. humanoidofplr.JumpPower = 0
  2838. local AaaAaAAa = Instance.new("Sound", humanoidofplr.Parent.Head)
  2839. AaaAaAAa.SoundId = "rbxassetid://205335029"
  2840. AaaAaAAa:Play()
  2841. AaaAaAAa.Volume = 10
  2842. workspace.CurrentCamera.CameraSubject = humanoidofplr.Parent.Head
  2843. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  2844. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2845. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2846. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  2847. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  2848. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  2849. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2850. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2851. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  2852. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  2853. local llegclone = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  2854. game.Players.LocalPlayer.Character.Torso["Left Hip"]:Remove()
  2855. local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2856. llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2857. llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  2858. llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) * CFrame.new(0,-1,0)
  2859. local rlegclone = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  2860. game.Players.LocalPlayer.Character.Torso["Right Hip"]:Remove()
  2861. local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2862. rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2863. rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  2864. rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) * CFrame.new(0,-1,0)
  2865. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  2866. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  2867. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2868. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  2869. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  2870. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  2871. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  2872. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  2873. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  2874. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  2875. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  2876. if humanoidofplr.Parent.Head:findFirstChild("face") then
  2877. humanoidofplr.Parent.Head.face.Texture = "http://www.roblox.com/asset/?id=61517715"
  2878. end
  2879. local dedvel = Instance.new("BodyVelocity", humanoidofplr.Parent.Torso)
  2880. dedvel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  2881. dedvel.Velocity = humanoidofplr.Parent.Torso.CFrame.lookVector * -20 + Vector3.new(0,25,0)
  2882. for i = 0,0.8 , 0.03 do
  2883. headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.207910627, 9.06495843e-26, -0.978150249, 2.5521228e-26, 1, 9.65691966e-26, 0.978150249, -4.58170414e-26, 0.207910627),i)
  2884. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 9.53674316e-07, -2.53730178, 1, 3.07971317e-27, -7.06819371e-28, 7.06819371e-28, 2.7418323e-06, 1, 3.08256605e-27, -1, 2.74183299e-06):inverse(),i)
  2885. game:GetService("RunService").RenderStepped:wait()
  2886. end
  2887. dedvel:destroy()
  2888. wait(7)
  2889. humanoidofplr.Parent:BreakJoints()
  2890. humanoidofplr.Parent.Head.Died.Volume = 10
  2891. humanoidofplr.Parent.Head.Died:Play()
  2892. end
  2893. wait()
  2894. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement