Advertisement
wamandnj

Untitled

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