Advertisement
Christoffer07700Extr

FE Deebeekaw

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