SHOW:
|
|
- or go back to the newest paste.
| 1 | --just put this on the top of a script and boom 89% works | |
| 2 | --note this does not work on big scripts | |
| 3 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
| |
| 4 | local Player,game,owner = owner,game | |
| 5 | local RealPlayer = Player | |
| 6 | do | |
| 7 | local rp = RealPlayer | |
| 8 | script.Parent = rp.Character | |
| 9 | ||
| 10 | --RemoteEvent for communicating | |
| 11 | local Event = Instance.new("RemoteEvent")
| |
| 12 | Event.Name = "UserInput_Event" | |
| 13 | ||
| 14 | --Fake event to make stuff like Mouse.KeyDown work | |
| 15 | local function fakeEvent() | |
| 16 | local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
| |
| 17 | t.connect = t.Connect | |
| 18 | return t | |
| 19 | end | |
| 20 | ||
| 21 | --Creating fake input objects with fake variables | |
| 22 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
| |
| 23 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 24 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
| |
| 25 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
| |
| 26 | end} | |
| 27 | --Merged 2 functions into one by checking amount of arguments | |
| 28 | CAS.UnbindAction = CAS.BindAction | |
| 29 | ||
| 30 | --This function will trigger the events that have been :Connect()'ed | |
| 31 | local function te(self,ev,...) | |
| 32 | local t = m[ev] | |
| 33 | if t and t._fakeEvent then | |
| 34 | for _,f in pairs(t.Functions) do | |
| 35 | f(...) | |
| 36 | end | |
| 37 | end | |
| 38 | end | |
| 39 | m.TrigEvent = te | |
| 40 | UIS.TrigEvent = te | |
| 41 | ||
| 42 | Event.OnServerEvent:Connect(function(plr,io) | |
| 43 | if plr~=rp then return end | |
| 44 | m.Target = io.Target | |
| 45 | m.Hit = io.Hit | |
| 46 | if not io.isMouse then | |
| 47 | local b = io.UserInputState == Enum.UserInputState.Begin | |
| 48 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 49 | return m:TrigEvent(b and "Button1Down" or "Button1Up") | |
| 50 | end | |
| 51 | for _,t in pairs(CAS.Actions) do | |
| 52 | for _,k in pairs(t.Keys) do | |
| 53 | if k==io.KeyCode then | |
| 54 | t.Function(t.Name,io.UserInputState,io) | |
| 55 | end | |
| 56 | end | |
| 57 | end | |
| 58 | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
| 59 | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) | |
| 60 | end | |
| 61 | end) | |
| 62 | Event.Parent = NLS([==[ | |
| 63 | local Player = game:GetService("Players").LocalPlayer
| |
| 64 | local Event = script:WaitForChild("UserInput_Event")
| |
| 65 | ||
| 66 | local Mouse = Player:GetMouse() | |
| 67 | local UIS = game:GetService("UserInputService")
| |
| 68 | local input = function(io,a) | |
| 69 | if a then return end | |
| 70 | --Since InputObject is a client-side instance, we create and pass table instead | |
| 71 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
| |
| 72 | end | |
| 73 | UIS.InputBegan:Connect(input) | |
| 74 | UIS.InputEnded:Connect(input) | |
| 75 | ||
| 76 | local h,t | |
| 77 | --Give the server mouse data 30 times every second, but only if the values changed | |
| 78 | --If player is not moving their mouse, client won't fire events | |
| 79 | while wait(1/30) do | |
| 80 | if h~=Mouse.Hit or t~=Mouse.Target then | |
| 81 | h,t=Mouse.Hit,Mouse.Target | |
| 82 | Event:FireServer({isMouse=true,Target=t,Hit=h})
| |
| 83 | end | |
| 84 | end]==],Player.Character) | |
| 85 | ||
| 86 | ----Sandboxed game object that allows the usage of client-side methods and services | |
| 87 | --Real game object | |
| 88 | local _rg = game | |
| 89 | ||
| 90 | --Metatable for fake service | |
| 91 | local fsmt = {
| |
| 92 | __index = function(self,k) | |
| 93 | local s = rawget(self,"_RealService") | |
| 94 | if s then return s[k] end | |
| 95 | end, | |
| 96 | __newindex = function(self,k,v) | |
| 97 | local s = rawget(self,"_RealService") | |
| 98 | if s then s[k]=v end | |
| 99 | end, | |
| 100 | __call = function(self,...) | |
| 101 | local s = rawget(self,"_RealService") | |
| 102 | if s then return s(...) end | |
| 103 | end | |
| 104 | } | |
| 105 | local function FakeService(t,RealService) | |
| 106 | t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService | |
| 107 | return setmetatable(t,fsmt) | |
| 108 | end | |
| 109 | ||
| 110 | --Fake game object | |
| 111 | local g = {
| |
| 112 | GetService = function(self,s) | |
| 113 | return self[s] | |
| 114 | end, | |
| 115 | Players = FakeService({
| |
| 116 | LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
| |
| 117 | },"Players"), | |
| 118 | UserInputService = FakeService(UIS,"UserInputService"), | |
| 119 | ContextActionService = FakeService(CAS,"ContextActionService"), | |
| 120 | } | |
| 121 | rawset(g.Players,"localPlayer",g.Players.LocalPlayer) | |
| 122 | g.service = g.GetService | |
| 123 | ||
| 124 | g.RunService = FakeService({
| |
| 125 | RenderStepped = _rg:GetService("RunService").Heartbeat,
| |
| 126 | BindToRenderStep = function(self,name,_,fun) | |
| 127 | self._btrs[name] = self.Heartbeat:Connect(fun) | |
| 128 | end, | |
| 129 | UnbindFromRenderStep = function(self,name) | |
| 130 | self._btrs[name]:Disconnect() | |
| 131 | end, | |
| 132 | },"RunService") | |
| 133 | ||
| 134 | setmetatable(g,{
| |
| 135 | __index=function(self,s) | |
| 136 | return _rg:GetService(s) or typeof(_rg[s])=="function" | |
| 137 | and function(_,...)return _rg[s](_rg,...)end or _rg[s] | |
| 138 | end, | |
| 139 | __newindex = fsmt.__newindex, | |
| 140 | __call = fsmt.__call | |
| 141 | }) | |
| 142 | --Changing owner to fake player object to support owner:GetMouse() | |
| 143 | game,owner = g,g.Players.LocalPlayer | |
| 144 | end | |
| 145 | ||
| 146 | ||
| 147 | -- Synapse Decompiler | |
| 148 | -- Purchase Here: https://brack4712.xyz/synapse/purchase/ | |
| 149 | ||
| 150 | --Uploaded it to here so it can't get deleted. Upload this to Pastebin or something, I don't know if this works. Also: http://gekk.cf/resources/dark-eccentric-video.html ! | |
| 151 | local player = game.Players.LocalPlayer | |
| 152 | local char = player.Character | |
| 153 | local debunk = false | |
| 154 | local debunk2 = false | |
| 155 | local keycombo = Instance.new("StringValue",char.Humanoid)
| |
| 156 | keycombo.Name = "KeyComboTracker" | |
| 157 | local ws = 16 | |
| 158 | local ts = game:GetService("TweenService")
| |
| 159 | local mouse = player:GetMouse() | |
| 160 | local sine=0 | |
| 161 | local change=1 | |
| 162 | chr=player.Character | |
| 163 | human=chr:FindFirstChild("Humanoid")
| |
| 164 | human.WalkSpeed = ws | |
| 165 | tors=chr["Torso"] | |
| 166 | rarm=chr["Right Arm"] | |
| 167 | larm=chr["Left Arm"] | |
| 168 | rleg=chr["Right Leg"] | |
| 169 | lleg=chr["Left Leg"] | |
| 170 | hrp=chr["HumanoidRootPart"] | |
| 171 | hed=chr["Head"] | |
| 172 | local animator = char.Humanoid.Animator | |
| 173 | local atm = tors:GetChildren() | |
| 174 | for i = 1,#atm do | |
| 175 | if atm[i].ClassName == "Motor6D" then | |
| 176 | local item = atm[i]:Clone() | |
| 177 | atm[i]:Remove() | |
| 178 | item.Parent = tors | |
| 179 | end | |
| 180 | end | |
| 181 | local atm = hrp:GetChildren() | |
| 182 | for i = 1,#atm do | |
| 183 | if atm[i].ClassName == "Motor6D" then | |
| 184 | local item = atm[i]:Clone() | |
| 185 | atm[i]:Remove() | |
| 186 | item.Parent = hrp | |
| 187 | end | |
| 188 | end | |
| 189 | animator.Parent = human | |
| 190 | animator:Destroy() | |
| 191 | char.Animate.Disabled = true | |
| 192 | cf=CFrame.new | |
| 193 | ang=CFrame.Angles | |
| 194 | rd=math.rad | |
| 195 | rd2=math.random | |
| 196 | local WrenchMoveGui = Instance.new("ScreenGui")
| |
| 197 | local MainFrame = Instance.new("Frame")
| |
| 198 | local Move1 = Instance.new("Frame")
| |
| 199 | local Bar1 = Instance.new("Frame")
| |
| 200 | local KeyButton = Instance.new("TextLabel")
| |
| 201 | local MoveName = Instance.new("TextLabel")
| |
| 202 | local Move2 = Instance.new("Frame")
| |
| 203 | local Bar2 = Instance.new("Frame")
| |
| 204 | local KeyButton_2 = Instance.new("TextLabel")
| |
| 205 | local MoveName_2 = Instance.new("TextLabel")
| |
| 206 | local Move3 = Instance.new("Frame")
| |
| 207 | local Bar3 = Instance.new("Frame")
| |
| 208 | local KeyButton_3 = Instance.new("TextLabel")
| |
| 209 | local MoveName_3 = Instance.new("TextLabel")
| |
| 210 | local Move4 = Instance.new("Frame")
| |
| 211 | local Bar4 = Instance.new("Frame")
| |
| 212 | local KeyButton_4 = Instance.new("TextLabel")
| |
| 213 | local MoveName_4 = Instance.new("TextLabel")
| |
| 214 | ||
| 215 | WrenchMoveGui.Name = "WrenchMoveGui" | |
| 216 | WrenchMoveGui.Parent = player.PlayerGui | |
| 217 | ||
| 218 | MainFrame.Name = "MainFrame" | |
| 219 | MainFrame.Parent = WrenchMoveGui | |
| 220 | MainFrame.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 221 | MainFrame.BackgroundTransparency = 1 | |
| 222 | MainFrame.Position = UDim2.new(1, -283, 1, -355) | |
| 223 | MainFrame.Size = UDim2.new(0, 253, 0, 355) | |
| 224 | ||
| 225 | Move1.Name = "Move1" | |
| 226 | Move1.Parent = MainFrame | |
| 227 | Move1.BackgroundColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 228 | Move1.BackgroundTransparency = 0.60000002384186 | |
| 229 | Move1.BorderColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 230 | Move1.BorderSizePixel = 0 | |
| 231 | Move1.Size = UDim2.new(1, 0, 0, 80) | |
| 232 | Move1.ZIndex = 5 | |
| 233 | ||
| 234 | Bar1.Name = "Bar1" | |
| 235 | Bar1.Parent = Move1 | |
| 236 | Bar1.BackgroundColor3 = Color3.new(0.0980392, 1, 0) | |
| 237 | Bar1.BorderSizePixel = 0 | |
| 238 | Bar1.Size = UDim2.new(1, 0, 1, 0) | |
| 239 | Bar1.ZIndex = 6 | |
| 240 | ||
| 241 | KeyButton.Name = "KeyButton" | |
| 242 | KeyButton.Parent = Move1 | |
| 243 | KeyButton.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 244 | KeyButton.BackgroundTransparency = 1 | |
| 245 | KeyButton.Size = UDim2.new(1, 0, 1, -40) | |
| 246 | KeyButton.ZIndex = 7 | |
| 247 | KeyButton.Font = Enum.Font.SourceSansLight | |
| 248 | KeyButton.FontSize = Enum.FontSize.Size48 | |
| 249 | KeyButton.Text = "[V]" | |
| 250 | KeyButton.TextColor3 = Color3.new(1, 1, 1) | |
| 251 | KeyButton.TextSize = 37 | |
| 252 | KeyButton.TextStrokeTransparency = 0 | |
| 253 | KeyButton.TextWrapped = true | |
| 254 | KeyButton.TextYAlignment = Enum.TextYAlignment.Top | |
| 255 | ||
| 256 | MoveName.Name = "MoveName" | |
| 257 | MoveName.Parent = Move1 | |
| 258 | MoveName.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 259 | MoveName.BackgroundTransparency = 1 | |
| 260 | MoveName.Position = UDim2.new(0, 0, 0, 40) | |
| 261 | MoveName.Size = UDim2.new(1, 0, 1, -40) | |
| 262 | MoveName.ZIndex = 7 | |
| 263 | MoveName.Font = Enum.Font.SourceSansLight | |
| 264 | MoveName.FontSize = Enum.FontSize.Size48 | |
| 265 | MoveName.Text = "Robot Creation" | |
| 266 | MoveName.TextColor3 = Color3.new(1, 1, 1) | |
| 267 | MoveName.TextSize = 37 | |
| 268 | MoveName.TextStrokeTransparency = 0 | |
| 269 | MoveName.TextWrapped = true | |
| 270 | MoveName.TextYAlignment = Enum.TextYAlignment.Top | |
| 271 | ||
| 272 | Move2.Name = "Move2" | |
| 273 | Move2.Parent = MainFrame | |
| 274 | Move2.BackgroundColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 275 | Move2.BackgroundTransparency = 0.60000002384186 | |
| 276 | Move2.BorderColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 277 | Move2.BorderSizePixel = 0 | |
| 278 | Move2.Position = UDim2.new(0, 0, 0, 90) | |
| 279 | Move2.Size = UDim2.new(1, 0, 0, 80) | |
| 280 | Move2.ZIndex = 5 | |
| 281 | ||
| 282 | Bar2.Name = "Bar2" | |
| 283 | Bar2.Parent = Move2 | |
| 284 | Bar2.BackgroundColor3 = Color3.new(0.0980392, 1, 0) | |
| 285 | Bar2.BorderSizePixel = 0 | |
| 286 | Bar2.Size = UDim2.new(1, 0, 1, 0) | |
| 287 | Bar2.ZIndex = 6 | |
| 288 | ||
| 289 | KeyButton_2.Name = "KeyButton" | |
| 290 | KeyButton_2.Parent = Move2 | |
| 291 | KeyButton_2.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 292 | KeyButton_2.BackgroundTransparency = 1 | |
| 293 | KeyButton_2.Size = UDim2.new(1, 0, 1, -40) | |
| 294 | KeyButton_2.ZIndex = 7 | |
| 295 | KeyButton_2.Font = Enum.Font.SourceSansLight | |
| 296 | KeyButton_2.FontSize = Enum.FontSize.Size48 | |
| 297 | KeyButton_2.Text = "[C]" | |
| 298 | KeyButton_2.TextColor3 = Color3.new(1, 1, 1) | |
| 299 | KeyButton_2.TextSize = 37 | |
| 300 | KeyButton_2.TextStrokeTransparency = 0 | |
| 301 | KeyButton_2.TextWrapped = true | |
| 302 | KeyButton_2.TextYAlignment = Enum.TextYAlignment.Top | |
| 303 | ||
| 304 | MoveName_2.Name = "MoveName" | |
| 305 | MoveName_2.Parent = Move2 | |
| 306 | MoveName_2.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 307 | MoveName_2.BackgroundTransparency = 1 | |
| 308 | MoveName_2.Position = UDim2.new(0, 0, 0, 40) | |
| 309 | MoveName_2.Size = UDim2.new(1, 0, 1, -40) | |
| 310 | MoveName_2.ZIndex = 7 | |
| 311 | MoveName_2.Font = Enum.Font.SourceSansLight | |
| 312 | MoveName_2.FontSize = Enum.FontSize.Size48 | |
| 313 | MoveName_2.Text = "Dome Barrier" | |
| 314 | MoveName_2.TextColor3 = Color3.new(1, 1, 1) | |
| 315 | MoveName_2.TextSize = 37 | |
| 316 | MoveName_2.TextStrokeTransparency = 0 | |
| 317 | MoveName_2.TextWrapped = true | |
| 318 | MoveName_2.TextYAlignment = Enum.TextYAlignment.Top | |
| 319 | ||
| 320 | Move3.Name = "Move3" | |
| 321 | Move3.Parent = MainFrame | |
| 322 | Move3.BackgroundColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 323 | Move3.BackgroundTransparency = 0.60000002384186 | |
| 324 | Move3.BorderColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 325 | Move3.BorderSizePixel = 0 | |
| 326 | Move3.Position = UDim2.new(0, 0, 0, 180) | |
| 327 | Move3.Size = UDim2.new(1, 0, 0, 80) | |
| 328 | Move3.ZIndex = 5 | |
| 329 | ||
| 330 | Bar3.Name = "Bar3" | |
| 331 | Bar3.Parent = Move3 | |
| 332 | Bar3.BackgroundColor3 = Color3.new(0.0980392, 1, 0) | |
| 333 | Bar3.BorderSizePixel = 0 | |
| 334 | Bar3.Size = UDim2.new(1, 0, 1, 0) | |
| 335 | Bar3.ZIndex = 6 | |
| 336 | ||
| 337 | KeyButton_3.Name = "KeyButton" | |
| 338 | KeyButton_3.Parent = Move3 | |
| 339 | KeyButton_3.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 340 | KeyButton_3.BackgroundTransparency = 1 | |
| 341 | KeyButton_3.Size = UDim2.new(1, 0, 1, -40) | |
| 342 | KeyButton_3.ZIndex = 7 | |
| 343 | KeyButton_3.Font = Enum.Font.SourceSansLight | |
| 344 | KeyButton_3.FontSize = Enum.FontSize.Size48 | |
| 345 | KeyButton_3.Text = "[X]" | |
| 346 | KeyButton_3.TextColor3 = Color3.new(1, 1, 1) | |
| 347 | KeyButton_3.TextSize = 37 | |
| 348 | KeyButton_3.TextStrokeTransparency = 0 | |
| 349 | KeyButton_3.TextWrapped = true | |
| 350 | KeyButton_3.TextYAlignment = Enum.TextYAlignment.Top | |
| 351 | ||
| 352 | MoveName_3.Name = "MoveName" | |
| 353 | MoveName_3.Parent = Move3 | |
| 354 | MoveName_3.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 355 | MoveName_3.BackgroundTransparency = 1 | |
| 356 | MoveName_3.Position = UDim2.new(0, 0, 0, 40) | |
| 357 | MoveName_3.Size = UDim2.new(1, 0, 1, -40) | |
| 358 | MoveName_3.ZIndex = 7 | |
| 359 | MoveName_3.Font = Enum.Font.SourceSansLight | |
| 360 | MoveName_3.FontSize = Enum.FontSize.Size48 | |
| 361 | MoveName_3.Text = "Tornado Spin" | |
| 362 | MoveName_3.TextColor3 = Color3.new(1, 1, 1) | |
| 363 | MoveName_3.TextSize = 37 | |
| 364 | MoveName_3.TextStrokeTransparency = 0 | |
| 365 | MoveName_3.TextWrapped = true | |
| 366 | MoveName_3.TextYAlignment = Enum.TextYAlignment.Top | |
| 367 | ||
| 368 | Move4.Name = "Move4" | |
| 369 | Move4.Parent = MainFrame | |
| 370 | Move4.BackgroundColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 371 | Move4.BackgroundTransparency = 0.60000002384186 | |
| 372 | Move4.BorderColor3 = Color3.new(0.0509804, 0.545098, 0) | |
| 373 | Move4.BorderSizePixel = 0 | |
| 374 | Move4.Position = UDim2.new(0, 0, 0, 270) | |
| 375 | Move4.Size = UDim2.new(1, 0, 0, 80) | |
| 376 | Move4.ZIndex = 5 | |
| 377 | ||
| 378 | Bar4.Name = "Bar4" | |
| 379 | Bar4.Parent = Move4 | |
| 380 | Bar4.BackgroundColor3 = Color3.new(0.0980392, 1, 0) | |
| 381 | Bar4.BorderSizePixel = 0 | |
| 382 | Bar4.Size = UDim2.new(1, 0, 1, 0) | |
| 383 | Bar4.ZIndex = 6 | |
| 384 | ||
| 385 | KeyButton_4.Name = "KeyButton" | |
| 386 | KeyButton_4.Parent = Move4 | |
| 387 | KeyButton_4.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 388 | KeyButton_4.BackgroundTransparency = 1 | |
| 389 | KeyButton_4.Size = UDim2.new(1, 0, 1, -40) | |
| 390 | KeyButton_4.ZIndex = 7 | |
| 391 | KeyButton_4.Font = Enum.Font.SourceSansLight | |
| 392 | KeyButton_4.FontSize = Enum.FontSize.Size48 | |
| 393 | KeyButton_4.Text = "[Z]" | |
| 394 | KeyButton_4.TextColor3 = Color3.new(1, 1, 1) | |
| 395 | KeyButton_4.TextSize = 37 | |
| 396 | KeyButton_4.TextStrokeTransparency = 0 | |
| 397 | KeyButton_4.TextWrapped = true | |
| 398 | KeyButton_4.TextYAlignment = Enum.TextYAlignment.Top | |
| 399 | ||
| 400 | MoveName_4.Name = "MoveName" | |
| 401 | MoveName_4.Parent = Move4 | |
| 402 | MoveName_4.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 403 | MoveName_4.BackgroundTransparency = 1 | |
| 404 | MoveName_4.Position = UDim2.new(0, 0, 0, 40) | |
| 405 | MoveName_4.Size = UDim2.new(1, 0, 1, -40) | |
| 406 | MoveName_4.ZIndex = 7 | |
| 407 | MoveName_4.Font = Enum.Font.SourceSansLight | |
| 408 | MoveName_4.FontSize = Enum.FontSize.Size48 | |
| 409 | MoveName_4.Text = "Teleport" | |
| 410 | MoveName_4.TextColor3 = Color3.new(1, 1, 1) | |
| 411 | MoveName_4.TextSize = 37 | |
| 412 | MoveName_4.TextStrokeTransparency = 0 | |
| 413 | MoveName_4.TextWrapped = true | |
| 414 | MoveName_4.TextYAlignment = Enum.TextYAlignment.Top | |
| 415 | ||
| 416 | Model0 = Instance.new("Model")
| |
| 417 | Part1 = Instance.new("Part")
| |
| 418 | BlockMesh2 = Instance.new("BlockMesh")
| |
| 419 | Weld3 = Instance.new("Weld")
| |
| 420 | Part4 = Instance.new("Part")
| |
| 421 | BlockMesh5 = Instance.new("BlockMesh")
| |
| 422 | Weld6 = Instance.new("Weld")
| |
| 423 | Part7 = Instance.new("Part")
| |
| 424 | BlockMesh8 = Instance.new("BlockMesh")
| |
| 425 | Weld9 = Instance.new("Weld")
| |
| 426 | Part10 = Instance.new("Part")
| |
| 427 | BlockMesh11 = Instance.new("BlockMesh")
| |
| 428 | Weld12 = Instance.new("Weld")
| |
| 429 | Part13 = Instance.new("Part")
| |
| 430 | BlockMesh14 = Instance.new("BlockMesh")
| |
| 431 | Weld15 = Instance.new("Weld")
| |
| 432 | Part16 = Instance.new("Part")
| |
| 433 | BlockMesh17 = Instance.new("BlockMesh")
| |
| 434 | Weld18 = Instance.new("Weld")
| |
| 435 | Part19 = Instance.new("Part")
| |
| 436 | BlockMesh20 = Instance.new("BlockMesh")
| |
| 437 | Weld21 = Instance.new("Weld")
| |
| 438 | Part22 = Instance.new("Part")
| |
| 439 | BlockMesh23 = Instance.new("BlockMesh")
| |
| 440 | Weld24 = Instance.new("Weld")
| |
| 441 | Part25 = Instance.new("Part")
| |
| 442 | BlockMesh26 = Instance.new("BlockMesh")
| |
| 443 | Weld27 = Instance.new("Weld")
| |
| 444 | Part28 = Instance.new("Part")
| |
| 445 | BlockMesh29 = Instance.new("BlockMesh")
| |
| 446 | Weld30 = Instance.new("Weld")
| |
| 447 | Part31 = Instance.new("Part")
| |
| 448 | BlockMesh32 = Instance.new("BlockMesh")
| |
| 449 | Weld33 = Instance.new("Weld")
| |
| 450 | Part34 = Instance.new("Part")
| |
| 451 | BlockMesh35 = Instance.new("BlockMesh")
| |
| 452 | Weld36 = Instance.new("Weld")
| |
| 453 | Part37 = Instance.new("Part")
| |
| 454 | BlockMesh38 = Instance.new("BlockMesh")
| |
| 455 | Weld39 = Instance.new("Weld")
| |
| 456 | Part40 = Instance.new("Part")
| |
| 457 | BlockMesh41 = Instance.new("BlockMesh")
| |
| 458 | Weld42 = Instance.new("Weld")
| |
| 459 | Part43 = Instance.new("Part")
| |
| 460 | BlockMesh44 = Instance.new("BlockMesh")
| |
| 461 | Weld45 = Instance.new("Weld")
| |
| 462 | Part46 = Instance.new("Part")
| |
| 463 | BlockMesh47 = Instance.new("BlockMesh")
| |
| 464 | Weld48 = Instance.new("Weld")
| |
| 465 | Part49 = Instance.new("Part")
| |
| 466 | BlockMesh50 = Instance.new("BlockMesh")
| |
| 467 | Weld51 = Instance.new("Weld")
| |
| 468 | Part52 = Instance.new("Part")
| |
| 469 | BlockMesh53 = Instance.new("BlockMesh")
| |
| 470 | Weld54 = Instance.new("Weld")
| |
| 471 | Part55 = Instance.new("Part")
| |
| 472 | Weld56 = Instance.new("Weld")
| |
| 473 | Part57 = Instance.new("Part")
| |
| 474 | Weld58 = Instance.new("Weld")
| |
| 475 | Part59 = Instance.new("Part")
| |
| 476 | BlockMesh60 = Instance.new("BlockMesh")
| |
| 477 | Weld61 = Instance.new("Weld")
| |
| 478 | Part62 = Instance.new("Part")
| |
| 479 | BlockMesh63 = Instance.new("BlockMesh")
| |
| 480 | Weld64 = Instance.new("Weld")
| |
| 481 | Part65 = Instance.new("Part")
| |
| 482 | BlockMesh66 = Instance.new("BlockMesh")
| |
| 483 | Weld67 = Instance.new("Weld")
| |
| 484 | Part68 = Instance.new("Part")
| |
| 485 | BlockMesh69 = Instance.new("BlockMesh")
| |
| 486 | Weld70 = Instance.new("Weld")
| |
| 487 | Part71 = Instance.new("Part")
| |
| 488 | BlockMesh72 = Instance.new("BlockMesh")
| |
| 489 | Weld73 = Instance.new("Weld")
| |
| 490 | Part74 = Instance.new("Part")
| |
| 491 | BlockMesh75 = Instance.new("BlockMesh")
| |
| 492 | Weld76 = Instance.new("Weld")
| |
| 493 | Part77 = Instance.new("Part")
| |
| 494 | BlockMesh78 = Instance.new("BlockMesh")
| |
| 495 | Weld79 = Instance.new("Weld")
| |
| 496 | Part80 = Instance.new("Part")
| |
| 497 | Weld81 = Instance.new("Weld")
| |
| 498 | Part82 = Instance.new("Part")
| |
| 499 | BlockMesh83 = Instance.new("BlockMesh")
| |
| 500 | Weld84 = Instance.new("Weld")
| |
| 501 | Part85 = Instance.new("Part")
| |
| 502 | Part86 = Instance.new("Part")
| |
| 503 | BlockMesh87 = Instance.new("BlockMesh")
| |
| 504 | Weld88 = Instance.new("Weld")
| |
| 505 | Part89 = Instance.new("Part")
| |
| 506 | BlockMesh90 = Instance.new("BlockMesh")
| |
| 507 | Weld91 = Instance.new("Weld")
| |
| 508 | Part92 = Instance.new("Part")
| |
| 509 | BlockMesh93 = Instance.new("BlockMesh")
| |
| 510 | Weld94 = Instance.new("Weld")
| |
| 511 | Part95 = Instance.new("Part")
| |
| 512 | BlockMesh96 = Instance.new("BlockMesh")
| |
| 513 | Weld97 = Instance.new("Weld")
| |
| 514 | Part98 = Instance.new("Part")
| |
| 515 | BlockMesh99 = Instance.new("BlockMesh")
| |
| 516 | Weld100 = Instance.new("Weld")
| |
| 517 | Part101 = Instance.new("Part")
| |
| 518 | Weld102 = Instance.new("Weld")
| |
| 519 | Part103 = Instance.new("Part")
| |
| 520 | Weld104 = Instance.new("Weld")
| |
| 521 | Part105 = Instance.new("Part")
| |
| 522 | BlockMesh106 = Instance.new("BlockMesh")
| |
| 523 | Weld107 = Instance.new("Weld")
| |
| 524 | Part108 = Instance.new("Part")
| |
| 525 | Weld109 = Instance.new("Weld")
| |
| 526 | Part110 = Instance.new("Part")
| |
| 527 | BlockMesh111 = Instance.new("BlockMesh")
| |
| 528 | Weld112 = Instance.new("Weld")
| |
| 529 | Part113 = Instance.new("Part")
| |
| 530 | SpecialMesh114 = Instance.new("SpecialMesh")
| |
| 531 | Weld115 = Instance.new("Weld")
| |
| 532 | Part116 = Instance.new("Part")
| |
| 533 | SpecialMesh117 = Instance.new("SpecialMesh")
| |
| 534 | Weld118 = Instance.new("Weld")
| |
| 535 | Part119 = Instance.new("Part")
| |
| 536 | Weld120 = Instance.new("Weld")
| |
| 537 | Part121 = Instance.new("Part")
| |
| 538 | BlockMesh122 = Instance.new("BlockMesh")
| |
| 539 | Weld123 = Instance.new("Weld")
| |
| 540 | Part124 = Instance.new("Part")
| |
| 541 | SpecialMesh125 = Instance.new("SpecialMesh")
| |
| 542 | Weld126 = Instance.new("Weld")
| |
| 543 | Part127 = Instance.new("Part")
| |
| 544 | SpecialMesh128 = Instance.new("SpecialMesh")
| |
| 545 | Weld129 = Instance.new("Weld")
| |
| 546 | Part130 = Instance.new("Part")
| |
| 547 | SpecialMesh131 = Instance.new("SpecialMesh")
| |
| 548 | Weld132 = Instance.new("Weld")
| |
| 549 | Part133 = Instance.new("Part")
| |
| 550 | BlockMesh134 = Instance.new("BlockMesh")
| |
| 551 | Weld135 = Instance.new("Weld")
| |
| 552 | Part136 = Instance.new("Part")
| |
| 553 | BlockMesh137 = Instance.new("BlockMesh")
| |
| 554 | Weld138 = Instance.new("Weld")
| |
| 555 | Part139 = Instance.new("Part")
| |
| 556 | BlockMesh140 = Instance.new("BlockMesh")
| |
| 557 | Weld141 = Instance.new("Weld")
| |
| 558 | Part142 = Instance.new("Part")
| |
| 559 | BlockMesh143 = Instance.new("BlockMesh")
| |
| 560 | Weld144 = Instance.new("Weld")
| |
| 561 | Part145 = Instance.new("Part")
| |
| 562 | BlockMesh146 = Instance.new("BlockMesh")
| |
| 563 | Weld147 = Instance.new("Weld")
| |
| 564 | Part148 = Instance.new("Part")
| |
| 565 | BlockMesh149 = Instance.new("BlockMesh")
| |
| 566 | Weld150 = Instance.new("Weld")
| |
| 567 | Part151 = Instance.new("Part")
| |
| 568 | BlockMesh152 = Instance.new("BlockMesh")
| |
| 569 | Weld153 = Instance.new("Weld")
| |
| 570 | Part154 = Instance.new("Part")
| |
| 571 | BlockMesh155 = Instance.new("BlockMesh")
| |
| 572 | Weld156 = Instance.new("Weld")
| |
| 573 | Part157 = Instance.new("Part")
| |
| 574 | BlockMesh158 = Instance.new("BlockMesh")
| |
| 575 | Weld159 = Instance.new("Weld")
| |
| 576 | Part160 = Instance.new("Part")
| |
| 577 | BlockMesh161 = Instance.new("BlockMesh")
| |
| 578 | Weld162 = Instance.new("Weld")
| |
| 579 | Part163 = Instance.new("Part")
| |
| 580 | BlockMesh164 = Instance.new("BlockMesh")
| |
| 581 | Weld165 = Instance.new("Weld")
| |
| 582 | Part166 = Instance.new("Part")
| |
| 583 | Weld167 = Instance.new("Weld")
| |
| 584 | Part168 = Instance.new("Part")
| |
| 585 | BlockMesh169 = Instance.new("BlockMesh")
| |
| 586 | Weld170 = Instance.new("Weld")
| |
| 587 | Part171 = Instance.new("Part")
| |
| 588 | BlockMesh172 = Instance.new("BlockMesh")
| |
| 589 | Weld173 = Instance.new("Weld")
| |
| 590 | Part174 = Instance.new("Part")
| |
| 591 | BlockMesh175 = Instance.new("BlockMesh")
| |
| 592 | Weld176 = Instance.new("Weld")
| |
| 593 | Part177 = Instance.new("Part")
| |
| 594 | BlockMesh178 = Instance.new("BlockMesh")
| |
| 595 | Weld179 = Instance.new("Weld")
| |
| 596 | Part180 = Instance.new("Part")
| |
| 597 | BlockMesh181 = Instance.new("BlockMesh")
| |
| 598 | Weld182 = Instance.new("Weld")
| |
| 599 | Part183 = Instance.new("Part")
| |
| 600 | BlockMesh184 = Instance.new("BlockMesh")
| |
| 601 | Weld185 = Instance.new("Weld")
| |
| 602 | Part186 = Instance.new("Part")
| |
| 603 | BlockMesh187 = Instance.new("BlockMesh")
| |
| 604 | Weld188 = Instance.new("Weld")
| |
| 605 | Part189 = Instance.new("Part")
| |
| 606 | BlockMesh190 = Instance.new("BlockMesh")
| |
| 607 | Weld191 = Instance.new("Weld")
| |
| 608 | Part192 = Instance.new("Part")
| |
| 609 | BlockMesh193 = Instance.new("BlockMesh")
| |
| 610 | Weld194 = Instance.new("Weld")
| |
| 611 | Part195 = Instance.new("Part")
| |
| 612 | BlockMesh196 = Instance.new("BlockMesh")
| |
| 613 | Weld197 = Instance.new("Weld")
| |
| 614 | WedgePart198 = Instance.new("WedgePart")
| |
| 615 | Weld199 = Instance.new("Weld")
| |
| 616 | WedgePart200 = Instance.new("WedgePart")
| |
| 617 | Weld201 = Instance.new("Weld")
| |
| 618 | WedgePart202 = Instance.new("WedgePart")
| |
| 619 | Weld203 = Instance.new("Weld")
| |
| 620 | WedgePart204 = Instance.new("WedgePart")
| |
| 621 | Weld205 = Instance.new("Weld")
| |
| 622 | WedgePart206 = Instance.new("WedgePart")
| |
| 623 | Weld207 = Instance.new("Weld")
| |
| 624 | WedgePart208 = Instance.new("WedgePart")
| |
| 625 | Weld209 = Instance.new("Weld")
| |
| 626 | WedgePart210 = Instance.new("WedgePart")
| |
| 627 | Weld211 = Instance.new("Weld")
| |
| 628 | WedgePart212 = Instance.new("WedgePart")
| |
| 629 | Weld213 = Instance.new("Weld")
| |
| 630 | WedgePart214 = Instance.new("WedgePart")
| |
| 631 | Weld215 = Instance.new("Weld")
| |
| 632 | WedgePart216 = Instance.new("WedgePart")
| |
| 633 | Weld217 = Instance.new("Weld")
| |
| 634 | Part218 = Instance.new("Part")
| |
| 635 | Weld219 = Instance.new("Weld")
| |
| 636 | Model0.Name = "Mirai-Renchi (Dark Eccentric Wrench)" | |
| 637 | Part1.Parent = Model0 | |
| 638 | Part1.Material = Enum.Material.Neon | |
| 639 | Part1.BrickColor = BrickColor.new("Bright orange")
| |
| 640 | Part1.Position = Vector3.new(-594.925049, 1509.5188, -449.910004) | |
| 641 | Part1.Rotation = Vector3.new(-90, -45, -90) | |
| 642 | Part1.CanCollide = false | |
| 643 | Part1.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 644 | Part1.CFrame = CFrame.new(-594.925049, 1509.5188, -449.910004, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 645 | Part1.TopSurface = Enum.SurfaceType.Smooth | |
| 646 | Part1.Color = Color3.new(0, 1, 0) | |
| 647 | Part1.Position = Vector3.new(-594.925049, 1509.5188, -449.910004) | |
| 648 | Part1.Orientation = Vector3.new(-45, -90, 0) | |
| 649 | Part1.Color = Color3.new(0, 1, 0) | |
| 650 | BlockMesh2.Parent = Part1 | |
| 651 | BlockMesh2.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 652 | BlockMesh2.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 653 | Weld3.Name = "Part" | |
| 654 | Weld3.Parent = Part1 | |
| 655 | Weld3.C0 = CFrame.new(-1.49645996, 3.80236816, -0.348632813, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 656 | Weld3.Part0 = Part85 | |
| 657 | Weld3.Part1 = Part1 | |
| 658 | Part4.Parent = Model0 | |
| 659 | Part4.Material = Enum.Material.Neon | |
| 660 | Part4.BrickColor = BrickColor.new("Bright orange")
| |
| 661 | Part4.Position = Vector3.new(-592.980957, 1502.76428, -449.910004) | |
| 662 | Part4.Rotation = Vector3.new(90, -40, 90) | |
| 663 | Part4.CanCollide = false | |
| 664 | Part4.Size = Vector3.new(0.215950891, 0.215950891, 0.575157702) | |
| 665 | Part4.CFrame = CFrame.new(-592.980957, 1502.76428, -449.910004, 0, -0.766043186, -0.642789185, 0, 0.642789185, -0.766043186, 1, 0, 0) | |
| 666 | Part4.TopSurface = Enum.SurfaceType.Smooth | |
| 667 | Part4.Color = Color3.new(0, 1, 0) | |
| 668 | Part4.Position = Vector3.new(-592.980957, 1502.76428, -449.910004) | |
| 669 | Part4.Orientation = Vector3.new(50, -90, 0) | |
| 670 | Part4.Color = Color3.new(0, 1, 0) | |
| 671 | BlockMesh5.Parent = Part4 | |
| 672 | BlockMesh5.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 673 | BlockMesh5.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 674 | Weld6.Name = "Part" | |
| 675 | Weld6.Parent = Part4 | |
| 676 | Weld6.C0 = CFrame.new(0.447631836, -2.95214844, -0.348632813, 0, -0.766043186, -0.642789185, 0, 0.642789185, -0.766043186, 1, 0, 0) | |
| 677 | Weld6.Part0 = Part85 | |
| 678 | Weld6.Part1 = Part4 | |
| 679 | Part7.Parent = Model0 | |
| 680 | Part7.Material = Enum.Material.Neon | |
| 681 | Part7.BrickColor = BrickColor.new("Bright orange")
| |
| 682 | Part7.Position = Vector3.new(-593.417847, 1502.55615, -449.910004) | |
| 683 | Part7.Rotation = Vector3.new(180, 90, 0) | |
| 684 | Part7.CanCollide = false | |
| 685 | Part7.Size = Vector3.new(0.215950891, 0.215950891, 0.63325429) | |
| 686 | Part7.CFrame = CFrame.new(-593.417847, 1502.55615, -449.910004, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 687 | Part7.TopSurface = Enum.SurfaceType.Smooth | |
| 688 | Part7.Color = Color3.new(0, 1, 0) | |
| 689 | Part7.Position = Vector3.new(-593.417847, 1502.55615, -449.910004) | |
| 690 | Part7.Orientation = Vector3.new(0, 90, 180) | |
| 691 | Part7.Color = Color3.new(0, 1, 0) | |
| 692 | BlockMesh8.Parent = Part7 | |
| 693 | BlockMesh8.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 694 | BlockMesh8.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 695 | Weld9.Name = "Part" | |
| 696 | Weld9.Parent = Part7 | |
| 697 | Weld9.C0 = CFrame.new(0.0107421875, -3.16027832, -0.348632813, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 698 | Weld9.Part0 = Part85 | |
| 699 | Weld9.Part1 = Part7 | |
| 700 | Part10.Parent = Model0 | |
| 701 | Part10.Material = Enum.Material.Neon | |
| 702 | Part10.BrickColor = BrickColor.new("Bright orange")
| |
| 703 | Part10.Position = Vector3.new(-592.78949, 1505.53088, -449.910004) | |
| 704 | Part10.Rotation = Vector3.new(-90, 0, -90) | |
| 705 | Part10.CanCollide = false | |
| 706 | Part10.Size = Vector3.new(0.215950891, 0.215950891, 5.14736271) | |
| 707 | Part10.CFrame = CFrame.new(-592.78949, 1505.53088, -449.910004, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 708 | Part10.TopSurface = Enum.SurfaceType.Smooth | |
| 709 | Part10.Color = Color3.new(0, 1, 0) | |
| 710 | Part10.Position = Vector3.new(-592.78949, 1505.53088, -449.910004) | |
| 711 | Part10.Orientation = Vector3.new(-90, -90, 0) | |
| 712 | Part10.Color = Color3.new(0, 1, 0) | |
| 713 | BlockMesh11.Parent = Part10 | |
| 714 | BlockMesh11.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 715 | BlockMesh11.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 716 | Weld12.Name = "Part" | |
| 717 | Weld12.Parent = Part10 | |
| 718 | Weld12.C0 = CFrame.new(0.639099121, -0.185546875, -0.348632813, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 719 | Weld12.Part0 = Part85 | |
| 720 | Weld12.Part1 = Part10 | |
| 721 | Part13.Parent = Model0 | |
| 722 | Part13.Material = Enum.Material.Neon | |
| 723 | Part13.BrickColor = BrickColor.new("Bright orange")
| |
| 724 | Part13.Position = Vector3.new(-594.291016, 1511.31592, -449.910004) | |
| 725 | Part13.Rotation = Vector3.new(-90, -21.1599998, -90) | |
| 726 | Part13.CanCollide = false | |
| 727 | Part13.Size = Vector3.new(0.215950891, 0.215950891, 1.85909295) | |
| 728 | Part13.CFrame = CFrame.new(-594.291016, 1511.31592, -449.910004, 0, 0.932569265, -0.360991091, 0, 0.360991091, 0.932569265, 1, 0, 0) | |
| 729 | Part13.TopSurface = Enum.SurfaceType.Smooth | |
| 730 | Part13.Color = Color3.new(0, 1, 0) | |
| 731 | Part13.Position = Vector3.new(-594.291016, 1511.31592, -449.910004) | |
| 732 | Part13.Orientation = Vector3.new(-68.8399963, -90, 0) | |
| 733 | Part13.Color = Color3.new(0, 1, 0) | |
| 734 | BlockMesh14.Parent = Part13 | |
| 735 | BlockMesh14.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 736 | BlockMesh14.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 737 | Weld15.Name = "Part" | |
| 738 | Weld15.Parent = Part13 | |
| 739 | Weld15.C0 = CFrame.new(-0.862426758, 5.5994873, -0.348632813, 0, 0.932569265, -0.360991091, 0, 0.360991091, 0.932569265, 1, 0, 0) | |
| 740 | Weld15.Part0 = Part85 | |
| 741 | Weld15.Part1 = Part13 | |
| 742 | Part16.Parent = Model0 | |
| 743 | Part16.Material = Enum.Material.Neon | |
| 744 | Part16.BrickColor = BrickColor.new("Bright orange")
| |
| 745 | Part16.Position = Vector3.new(-593.182007, 1510.17664, -449.910004) | |
| 746 | Part16.Rotation = Vector3.new(90, -45, 90) | |
| 747 | Part16.CanCollide = false | |
| 748 | Part16.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 749 | Part16.CFrame = CFrame.new(-593.182007, 1510.17664, -449.910004, 0, -0.707106829, -0.707106829, 0, 0.707106829, -0.707106829, 1, 0, 0) | |
| 750 | Part16.TopSurface = Enum.SurfaceType.Smooth | |
| 751 | Part16.Color = Color3.new(0, 1, 0) | |
| 752 | Part16.Position = Vector3.new(-593.182007, 1510.17664, -449.910004) | |
| 753 | Part16.Orientation = Vector3.new(45, -90, 0) | |
| 754 | Part16.Color = Color3.new(0, 1, 0) | |
| 755 | BlockMesh17.Parent = Part16 | |
| 756 | BlockMesh17.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 757 | BlockMesh17.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 758 | Weld18.Name = "Part" | |
| 759 | Weld18.Parent = Part16 | |
| 760 | Weld18.C0 = CFrame.new(0.246582031, 4.46020508, -0.348632813, 0, -0.707106829, -0.707106829, 0, 0.707106829, -0.707106829, 1, 0, 0) | |
| 761 | Weld18.Part0 = Part85 | |
| 762 | Weld18.Part1 = Part16 | |
| 763 | Part19.Parent = Model0 | |
| 764 | Part19.Material = Enum.Material.Neon | |
| 765 | Part19.BrickColor = BrickColor.new("Bright orange")
| |
| 766 | Part19.Position = Vector3.new(-594.94458, 1511.54517, -449.910004) | |
| 767 | Part19.Rotation = Vector3.new(-90, -63.4300003, -90) | |
| 768 | Part19.CanCollide = false | |
| 769 | Part19.Size = Vector3.new(0.215950891, 1.39431942, 0.215950891) | |
| 770 | Part19.CFrame = CFrame.new(-594.94458, 1511.54517, -449.910004, 0, 0.447216004, -0.894425988, 0, 0.894425988, 0.447216004, 1, 0, 0) | |
| 771 | Part19.TopSurface = Enum.SurfaceType.Smooth | |
| 772 | Part19.Color = Color3.new(0, 1, 0) | |
| 773 | Part19.Position = Vector3.new(-594.94458, 1511.54517, -449.910004) | |
| 774 | Part19.Orientation = Vector3.new(-26.5699997, -90, 0) | |
| 775 | Part19.Color = Color3.new(0, 1, 0) | |
| 776 | BlockMesh20.Parent = Part19 | |
| 777 | BlockMesh20.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 778 | BlockMesh20.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 779 | Weld21.Name = "Part" | |
| 780 | Weld21.Parent = Part19 | |
| 781 | Weld21.C0 = CFrame.new(-1.51599121, 5.82873535, -0.348632813, 0, 0.447216004, -0.894425988, 0, 0.894425988, 0.447216004, 1, 0, 0) | |
| 782 | Weld21.Part0 = Part85 | |
| 783 | Weld21.Part1 = Part19 | |
| 784 | Part22.Parent = Model0 | |
| 785 | Part22.Material = Enum.Material.Neon | |
| 786 | Part22.BrickColor = BrickColor.new("Bright orange")
| |
| 787 | Part22.Position = Vector3.new(-594.067566, 1505.5188, -449.910004) | |
| 788 | Part22.Rotation = Vector3.new(-90, 0, -90) | |
| 789 | Part22.CanCollide = false | |
| 790 | Part22.Size = Vector3.new(0.215950891, 0.215950891, 5.17060089) | |
| 791 | Part22.CFrame = CFrame.new(-594.067566, 1505.5188, -449.910004, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 792 | Part22.TopSurface = Enum.SurfaceType.Smooth | |
| 793 | Part22.Color = Color3.new(0, 1, 0) | |
| 794 | Part22.Position = Vector3.new(-594.067566, 1505.5188, -449.910004) | |
| 795 | Part22.Orientation = Vector3.new(-90, -90, 0) | |
| 796 | Part22.Color = Color3.new(0, 1, 0) | |
| 797 | BlockMesh23.Parent = Part22 | |
| 798 | BlockMesh23.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 799 | BlockMesh23.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 800 | Weld24.Name = "Part" | |
| 801 | Weld24.Parent = Part22 | |
| 802 | Weld24.C0 = CFrame.new(-0.638977051, -0.197631836, -0.348632813, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 803 | Weld24.Part0 = Part85 | |
| 804 | Weld24.Part1 = Part22 | |
| 805 | Part25.Parent = Model0 | |
| 806 | Part25.Material = Enum.Material.Neon | |
| 807 | Part25.BrickColor = BrickColor.new("Bright orange")
| |
| 808 | Part25.Position = Vector3.new(-592.566406, 1511.31592, -449.910004) | |
| 809 | Part25.Rotation = Vector3.new(90, -21.1599998, 90) | |
| 810 | Part25.CanCollide = false | |
| 811 | Part25.Size = Vector3.new(0.215950891, 0.215950891, 1.85909295) | |
| 812 | Part25.CFrame = CFrame.new(-592.566406, 1511.31592, -449.910004, 0, -0.932567358, -0.360996127, 0, 0.360996127, -0.932567358, 1, 0, 0) | |
| 813 | Part25.TopSurface = Enum.SurfaceType.Smooth | |
| 814 | Part25.Color = Color3.new(0, 1, 0) | |
| 815 | Part25.Position = Vector3.new(-592.566406, 1511.31592, -449.910004) | |
| 816 | Part25.Orientation = Vector3.new(68.8399963, -90, 0) | |
| 817 | Part25.Color = Color3.new(0, 1, 0) | |
| 818 | BlockMesh26.Parent = Part25 | |
| 819 | BlockMesh26.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 820 | BlockMesh26.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 821 | Weld27.Name = "Part" | |
| 822 | Weld27.Parent = Part25 | |
| 823 | Weld27.C0 = CFrame.new(0.862182617, 5.5994873, -0.348632813, 0, -0.932567358, -0.360996127, 0, 0.360996127, -0.932567358, 1, 0, 0) | |
| 824 | Weld27.Part0 = Part85 | |
| 825 | Weld27.Part1 = Part25 | |
| 826 | Part28.Parent = Model0 | |
| 827 | Part28.Material = Enum.Material.Neon | |
| 828 | Part28.BrickColor = BrickColor.new("Bright orange")
| |
| 829 | Part28.Position = Vector3.new(-591.929199, 1511.5752, -449.910004) | |
| 830 | Part28.Rotation = Vector3.new(-90, -26.5599995, -90) | |
| 831 | Part28.CanCollide = false | |
| 832 | Part28.Size = Vector3.new(0.215950891, 0.215950891, 1.39431965) | |
| 833 | Part28.CFrame = CFrame.new(-591.929199, 1511.5752, -449.910004, 0, 0.894428015, -0.447212011, 0, 0.447212011, 0.894428015, 1, 0, 0) | |
| 834 | Part28.TopSurface = Enum.SurfaceType.Smooth | |
| 835 | Part28.Color = Color3.new(0, 1, 0) | |
| 836 | Part28.Position = Vector3.new(-591.929199, 1511.5752, -449.910004) | |
| 837 | Part28.Orientation = Vector3.new(-63.4399986, -90, 0) | |
| 838 | Part28.Color = Color3.new(0, 1, 0) | |
| 839 | BlockMesh29.Parent = Part28 | |
| 840 | BlockMesh29.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 841 | BlockMesh29.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 842 | Weld30.Name = "Part" | |
| 843 | Weld30.Parent = Part28 | |
| 844 | Weld30.C0 = CFrame.new(1.49938965, 5.85876465, -0.348632813, 0, 0.894428015, -0.447212011, 0, 0.447212011, 0.894428015, 1, 0, 0) | |
| 845 | Weld30.Part0 = Part85 | |
| 846 | Weld30.Part1 = Part28 | |
| 847 | Part31.Parent = Model0 | |
| 848 | Part31.Material = Enum.Material.Neon | |
| 849 | Part31.BrickColor = BrickColor.new("Bright orange")
| |
| 850 | Part31.Position = Vector3.new(-591.627686, 1510.37024, -449.910004) | |
| 851 | Part31.Rotation = Vector3.new(-90, 0, -90) | |
| 852 | Part31.CanCollide = false | |
| 853 | Part31.Size = Vector3.new(0.215950891, 0.215950891, 1.27812636) | |
| 854 | Part31.CFrame = CFrame.new(-591.627686, 1510.37024, -449.910004, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 855 | Part31.TopSurface = Enum.SurfaceType.Smooth | |
| 856 | Part31.Color = Color3.new(0, 1, 0) | |
| 857 | Part31.Position = Vector3.new(-591.627686, 1510.37024, -449.910004) | |
| 858 | Part31.Orientation = Vector3.new(-90, -90, 0) | |
| 859 | Part31.Color = Color3.new(0, 1, 0) | |
| 860 | BlockMesh32.Parent = Part31 | |
| 861 | BlockMesh32.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 862 | BlockMesh32.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 863 | Weld33.Name = "Part" | |
| 864 | Weld33.Parent = Part31 | |
| 865 | Weld33.C0 = CFrame.new(1.80090332, 4.65380859, -0.348632813, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 866 | Weld33.Part0 = Part85 | |
| 867 | Weld33.Part1 = Part31 | |
| 868 | Part34.Parent = Model0 | |
| 869 | Part34.Material = Enum.Material.Neon | |
| 870 | Part34.BrickColor = BrickColor.new("Bright orange")
| |
| 871 | Part34.Position = Vector3.new(-595.229187, 1510.37, -449.910004) | |
| 872 | Part34.Rotation = Vector3.new(0, -90, 0) | |
| 873 | Part34.CanCollide = false | |
| 874 | Part34.Size = Vector3.new(0.215950891, 1.27812624, 0.215950891) | |
| 875 | Part34.CFrame = CFrame.new(-595.229187, 1510.37, -449.910004, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 876 | Part34.TopSurface = Enum.SurfaceType.Smooth | |
| 877 | Part34.Color = Color3.new(0, 1, 0) | |
| 878 | Part34.Position = Vector3.new(-595.229187, 1510.37, -449.910004) | |
| 879 | Part34.Orientation = Vector3.new(0, -90, 0) | |
| 880 | Part34.Color = Color3.new(0, 1, 0) | |
| 881 | BlockMesh35.Parent = Part34 | |
| 882 | BlockMesh35.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 883 | BlockMesh35.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 884 | Weld36.Name = "Part" | |
| 885 | Weld36.Parent = Part34 | |
| 886 | Weld36.C0 = CFrame.new(-1.80059814, 4.65356445, -0.348632813, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 887 | Weld36.Part0 = Part85 | |
| 888 | Weld36.Part1 = Part34 | |
| 889 | Part37.Parent = Model0 | |
| 890 | Part37.Material = Enum.Material.Neon | |
| 891 | Part37.BrickColor = BrickColor.new("Bright orange")
| |
| 892 | Part37.Position = Vector3.new(-593.864502, 1502.75757, -449.910004) | |
| 893 | Part37.Rotation = Vector3.new(-90, -40, -90) | |
| 894 | Part37.CanCollide = false | |
| 895 | Part37.Size = Vector3.new(0.215950891, 0.215950891, 0.563538313) | |
| 896 | Part37.CFrame = CFrame.new(-593.864502, 1502.75757, -449.910004, 0, 0.766044974, -0.64278698, 0, 0.64278698, 0.766044974, 1, 0, 0) | |
| 897 | Part37.TopSurface = Enum.SurfaceType.Smooth | |
| 898 | Part37.Color = Color3.new(0, 1, 0) | |
| 899 | Part37.Position = Vector3.new(-593.864502, 1502.75757, -449.910004) | |
| 900 | Part37.Orientation = Vector3.new(-50, -90, 0) | |
| 901 | Part37.Color = Color3.new(0, 1, 0) | |
| 902 | BlockMesh38.Parent = Part37 | |
| 903 | BlockMesh38.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 904 | BlockMesh38.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 905 | Weld39.Name = "Part" | |
| 906 | Weld39.Parent = Part37 | |
| 907 | Weld39.C0 = CFrame.new(-0.435913086, -2.9588623, -0.348632813, 0, 0.766044974, -0.64278698, 0, 0.64278698, 0.766044974, 1, 0, 0) | |
| 908 | Weld39.Part0 = Part85 | |
| 909 | Weld39.Part1 = Part37 | |
| 910 | Part40.Parent = Model0 | |
| 911 | Part40.Material = Enum.Material.Neon | |
| 912 | Part40.BrickColor = BrickColor.new("Bright orange")
| |
| 913 | Part40.Position = Vector3.new(-594.356506, 1508.66833, -449.910004) | |
| 914 | Part40.Rotation = Vector3.new(90, 26.5599995, 90) | |
| 915 | Part40.CanCollide = false | |
| 916 | Part40.Size = Vector3.new(0.215950891, 0.215950891, 1.27812636) | |
| 917 | Part40.CFrame = CFrame.new(-594.356506, 1508.66833, -449.910004, 0, -0.894428015, 0.447212011, 0, -0.447212011, -0.894428015, 1, 0, 0) | |
| 918 | Part40.TopSurface = Enum.SurfaceType.Smooth | |
| 919 | Part40.Color = Color3.new(0, 1, 0) | |
| 920 | Part40.Position = Vector3.new(-594.356506, 1508.66833, -449.910004) | |
| 921 | Part40.Orientation = Vector3.new(63.4399986, 90, 180) | |
| 922 | Part40.Color = Color3.new(0, 1, 0) | |
| 923 | BlockMesh41.Parent = Part40 | |
| 924 | BlockMesh41.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 925 | BlockMesh41.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 926 | Weld42.Name = "Part" | |
| 927 | Weld42.Parent = Part40 | |
| 928 | Weld42.C0 = CFrame.new(-0.92791748, 2.9519043, -0.348632813, 0, -0.894428015, 0.447212011, 0, -0.447212011, -0.894428015, 1, 0, 0) | |
| 929 | Weld42.Part0 = Part85 | |
| 930 | Weld42.Part1 = Part40 | |
| 931 | Part43.Parent = Model0 | |
| 932 | Part43.Material = Enum.Material.Neon | |
| 933 | Part43.BrickColor = BrickColor.new("Bright orange")
| |
| 934 | Part43.Position = Vector3.new(-592.500427, 1508.66833, -449.910004) | |
| 935 | Part43.Rotation = Vector3.new(-90, 26.5699997, -90) | |
| 936 | Part43.CanCollide = false | |
| 937 | Part43.Size = Vector3.new(0.215950891, 0.215950891, 1.27812636) | |
| 938 | Part43.CFrame = CFrame.new(-592.500427, 1508.66833, -449.910004, 0, 0.894426584, 0.447214782, 0, -0.447214782, 0.894426584, 1, 0, 0) | |
| 939 | Part43.TopSurface = Enum.SurfaceType.Smooth | |
| 940 | Part43.Color = Color3.new(0, 1, 0) | |
| 941 | Part43.Position = Vector3.new(-592.500427, 1508.66833, -449.910004) | |
| 942 | Part43.Orientation = Vector3.new(-63.4300003, 90, 180) | |
| 943 | Part43.Color = Color3.new(0, 1, 0) | |
| 944 | BlockMesh44.Parent = Part43 | |
| 945 | BlockMesh44.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 946 | BlockMesh44.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 947 | Weld45.Name = "Part" | |
| 948 | Weld45.Parent = Part43 | |
| 949 | Weld45.C0 = CFrame.new(0.928161621, 2.9519043, -0.348632813, 0, 0.894426584, 0.447214782, 0, -0.447214782, 0.894426584, 1, 0, 0) | |
| 950 | Weld45.Part0 = Part85 | |
| 951 | Weld45.Part1 = Part43 | |
| 952 | Part46.Parent = Model0 | |
| 953 | Part46.Material = Enum.Material.Neon | |
| 954 | Part46.BrickColor = BrickColor.new("Bright orange")
| |
| 955 | Part46.Position = Vector3.new(-593.715942, 1510.21716, -449.910004) | |
| 956 | Part46.Rotation = Vector3.new(-90, -45, -90) | |
| 957 | Part46.CanCollide = false | |
| 958 | Part46.Size = Vector3.new(0.215950891, 0.215950891, 0.697159708) | |
| 959 | Part46.CFrame = CFrame.new(-593.715942, 1510.21716, -449.910004, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 960 | Part46.TopSurface = Enum.SurfaceType.Smooth | |
| 961 | Part46.Color = Color3.new(0, 1, 0) | |
| 962 | Part46.Position = Vector3.new(-593.715942, 1510.21716, -449.910004) | |
| 963 | Part46.Orientation = Vector3.new(-45, -90, 0) | |
| 964 | Part46.Color = Color3.new(0, 1, 0) | |
| 965 | BlockMesh47.Parent = Part46 | |
| 966 | BlockMesh47.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 967 | BlockMesh47.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 968 | Weld48.Name = "Part" | |
| 969 | Weld48.Parent = Part46 | |
| 970 | Weld48.C0 = CFrame.new(-0.287353516, 4.50073242, -0.348632813, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 971 | Weld48.Part0 = Part85 | |
| 972 | Weld48.Part1 = Part46 | |
| 973 | Part49.Parent = Model0 | |
| 974 | Part49.Material = Enum.Material.Neon | |
| 975 | Part49.BrickColor = BrickColor.new("Bright orange")
| |
| 976 | Part49.Position = Vector3.new(-591.932312, 1509.51868, -449.910004) | |
| 977 | Part49.Rotation = Vector3.new(-90, 45, -90) | |
| 978 | Part49.CanCollide = false | |
| 979 | Part49.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 980 | Part49.CFrame = CFrame.new(-591.932312, 1509.51868, -449.910004, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 1, 0, 0) | |
| 981 | Part49.TopSurface = Enum.SurfaceType.Smooth | |
| 982 | Part49.Color = Color3.new(0, 1, 0) | |
| 983 | Part49.Position = Vector3.new(-591.932312, 1509.51868, -449.910004) | |
| 984 | Part49.Orientation = Vector3.new(-45, 90, 180) | |
| 985 | Part49.Color = Color3.new(0, 1, 0) | |
| 986 | BlockMesh50.Parent = Part49 | |
| 987 | BlockMesh50.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 988 | BlockMesh50.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 989 | Weld51.Name = "Part" | |
| 990 | Weld51.Parent = Part49 | |
| 991 | Weld51.C0 = CFrame.new(1.49627686, 3.80224609, -0.348632813, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 1, 0, 0) | |
| 992 | Weld51.Part0 = Part85 | |
| 993 | Weld51.Part1 = Part49 | |
| 994 | Part52.Parent = Model0 | |
| 995 | Part52.Material = Enum.Material.Neon | |
| 996 | Part52.BrickColor = BrickColor.new("Bright orange")
| |
| 997 | Part52.Position = Vector3.new(-594.067505, 1505.51355, -449.212799) | |
| 998 | Part52.Rotation = Vector3.new(-90, 0, -90) | |
| 999 | Part52.CanCollide = false | |
| 1000 | Part52.Size = Vector3.new(0.215950891, 0.215950891, 5.17060089) | |
| 1001 | Part52.CFrame = CFrame.new(-594.067505, 1505.51355, -449.212799, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1002 | Part52.TopSurface = Enum.SurfaceType.Smooth | |
| 1003 | Part52.Color = Color3.new(0, 1, 0) | |
| 1004 | Part52.Position = Vector3.new(-594.067505, 1505.51355, -449.212799) | |
| 1005 | Part52.Orientation = Vector3.new(-90, -90, 0) | |
| 1006 | Part52.Color = Color3.new(0, 1, 0) | |
| 1007 | BlockMesh53.Parent = Part52 | |
| 1008 | BlockMesh53.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1009 | BlockMesh53.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1010 | Weld54.Name = "Part" | |
| 1011 | Weld54.Parent = Part52 | |
| 1012 | Weld54.C0 = CFrame.new(-0.638916016, -0.202880859, 0.348571777, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1013 | Weld54.Part0 = Part85 | |
| 1014 | Weld54.Part1 = Part52 | |
| 1015 | Part55.Parent = Model0 | |
| 1016 | Part55.BrickColor = BrickColor.new("Really black")
| |
| 1017 | Part55.Position = Vector3.new(-594.590332, 1510.13245, -449.561371) | |
| 1018 | Part55.CanCollide = false | |
| 1019 | Part55.Size = Vector3.new(1.16193271, 0.580966353, 0.580966473) | |
| 1020 | Part55.CFrame = CFrame.new(-594.590332, 1510.13245, -449.561371, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1021 | Part55.BottomSurface = Enum.SurfaceType.Smooth | |
| 1022 | Part55.TopSurface = Enum.SurfaceType.Smooth | |
| 1023 | Part55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1024 | Part55.Position = Vector3.new(-594.590332, 1510.13245, -449.561371) | |
| 1025 | Part55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1026 | Weld56.Name = "Part" | |
| 1027 | Weld56.Parent = Part55 | |
| 1028 | Weld56.C0 = CFrame.new(-1.16174316, 4.41601563, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1029 | Weld56.Part0 = Part85 | |
| 1030 | Weld56.Part1 = Part55 | |
| 1031 | Part57.Parent = Model0 | |
| 1032 | Part57.BrickColor = BrickColor.new("Really black")
| |
| 1033 | Part57.Position = Vector3.new(-592.266602, 1510.13269, -449.561371) | |
| 1034 | Part57.CanCollide = false | |
| 1035 | Part57.Size = Vector3.new(1.16193271, 0.580966353, 0.580966473) | |
| 1036 | Part57.CFrame = CFrame.new(-592.266602, 1510.13269, -449.561371, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1037 | Part57.BottomSurface = Enum.SurfaceType.Smooth | |
| 1038 | Part57.TopSurface = Enum.SurfaceType.Smooth | |
| 1039 | Part57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1040 | Part57.Position = Vector3.new(-592.266602, 1510.13269, -449.561371) | |
| 1041 | Part57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1042 | Weld58.Name = "Part" | |
| 1043 | Weld58.Parent = Part57 | |
| 1044 | Weld58.C0 = CFrame.new(1.1619873, 4.41625977, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1045 | Weld58.Part0 = Part85 | |
| 1046 | Weld58.Part1 = Part57 | |
| 1047 | Part59.Parent = Model0 | |
| 1048 | Part59.Material = Enum.Material.Neon | |
| 1049 | Part59.BrickColor = BrickColor.new("Bright orange")
| |
| 1050 | Part59.Position = Vector3.new(-592.789551, 1505.52588, -449.212799) | |
| 1051 | Part59.Rotation = Vector3.new(-90, 0, -90) | |
| 1052 | Part59.CanCollide = false | |
| 1053 | Part59.Size = Vector3.new(0.215950891, 0.215950891, 5.14736271) | |
| 1054 | Part59.CFrame = CFrame.new(-592.789551, 1505.52588, -449.212799, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1055 | Part59.TopSurface = Enum.SurfaceType.Smooth | |
| 1056 | Part59.Color = Color3.new(0, 1, 0) | |
| 1057 | Part59.Position = Vector3.new(-592.789551, 1505.52588, -449.212799) | |
| 1058 | Part59.Orientation = Vector3.new(-90, -90, 0) | |
| 1059 | Part59.Color = Color3.new(0, 1, 0) | |
| 1060 | BlockMesh60.Parent = Part59 | |
| 1061 | BlockMesh60.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1062 | BlockMesh60.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1063 | Weld61.Name = "Part" | |
| 1064 | Weld61.Parent = Part59 | |
| 1065 | Weld61.C0 = CFrame.new(0.639038086, -0.190551758, 0.348571777, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1066 | Weld61.Part0 = Part85 | |
| 1067 | Weld61.Part1 = Part59 | |
| 1068 | Part62.Parent = Model0 | |
| 1069 | Part62.Material = Enum.Material.Neon | |
| 1070 | Part62.BrickColor = BrickColor.new("Bright orange")
| |
| 1071 | Part62.Position = Vector3.new(-594.356812, 1508.66321, -449.212799) | |
| 1072 | Part62.Rotation = Vector3.new(90, 26.5599995, 90) | |
| 1073 | Part62.CanCollide = false | |
| 1074 | Part62.Size = Vector3.new(0.215950891, 0.215950891, 1.27812636) | |
| 1075 | Part62.CFrame = CFrame.new(-594.356812, 1508.66321, -449.212799, 0, -0.894428015, 0.447212011, 0, -0.447212011, -0.894428015, 1, 0, 0) | |
| 1076 | Part62.TopSurface = Enum.SurfaceType.Smooth | |
| 1077 | Part62.Color = Color3.new(0, 1, 0) | |
| 1078 | Part62.Position = Vector3.new(-594.356812, 1508.66321, -449.212799) | |
| 1079 | Part62.Orientation = Vector3.new(63.4399986, 90, 180) | |
| 1080 | Part62.Color = Color3.new(0, 1, 0) | |
| 1081 | BlockMesh63.Parent = Part62 | |
| 1082 | BlockMesh63.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1083 | BlockMesh63.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1084 | Weld64.Name = "Part" | |
| 1085 | Weld64.Parent = Part62 | |
| 1086 | Weld64.C0 = CFrame.new(-0.928222656, 2.94677734, 0.348571777, 0, -0.894428015, 0.447212011, 0, -0.447212011, -0.894428015, 1, 0, 0) | |
| 1087 | Weld64.Part0 = Part85 | |
| 1088 | Weld64.Part1 = Part62 | |
| 1089 | Part65.Parent = Model0 | |
| 1090 | Part65.Material = Enum.Material.Neon | |
| 1091 | Part65.BrickColor = BrickColor.new("Bright orange")
| |
| 1092 | Part65.Position = Vector3.new(-591.627686, 1510.36499, -449.212799) | |
| 1093 | Part65.Rotation = Vector3.new(-90, 0, -90) | |
| 1094 | Part65.CanCollide = false | |
| 1095 | Part65.Size = Vector3.new(0.215950891, 0.215950891, 1.27812636) | |
| 1096 | Part65.CFrame = CFrame.new(-591.627686, 1510.36499, -449.212799, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1097 | Part65.TopSurface = Enum.SurfaceType.Smooth | |
| 1098 | Part65.Color = Color3.new(0, 1, 0) | |
| 1099 | Part65.Position = Vector3.new(-591.627686, 1510.36499, -449.212799) | |
| 1100 | Part65.Orientation = Vector3.new(-90, -90, 0) | |
| 1101 | Part65.Color = Color3.new(0, 1, 0) | |
| 1102 | BlockMesh66.Parent = Part65 | |
| 1103 | BlockMesh66.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1104 | BlockMesh66.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1105 | Weld67.Name = "Part" | |
| 1106 | Weld67.Parent = Part65 | |
| 1107 | Weld67.C0 = CFrame.new(1.80090332, 4.64855957, 0.348571777, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1108 | Weld67.Part0 = Part85 | |
| 1109 | Weld67.Part1 = Part65 | |
| 1110 | Part68.Parent = Model0 | |
| 1111 | Part68.Material = Enum.Material.Neon | |
| 1112 | Part68.BrickColor = BrickColor.new("Bright orange")
| |
| 1113 | Part68.Position = Vector3.new(-593.182007, 1510.17029, -449.212799) | |
| 1114 | Part68.Rotation = Vector3.new(90, -45, 90) | |
| 1115 | Part68.CanCollide = false | |
| 1116 | Part68.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1117 | Part68.CFrame = CFrame.new(-593.182007, 1510.17029, -449.212799, 0, -0.707106829, -0.707106829, 0, 0.707106829, -0.707106829, 1, 0, 0) | |
| 1118 | Part68.TopSurface = Enum.SurfaceType.Smooth | |
| 1119 | Part68.Color = Color3.new(0, 1, 0) | |
| 1120 | Part68.Position = Vector3.new(-593.182007, 1510.17029, -449.212799) | |
| 1121 | Part68.Orientation = Vector3.new(45, -90, 0) | |
| 1122 | Part68.Color = Color3.new(0, 1, 0) | |
| 1123 | BlockMesh69.Parent = Part68 | |
| 1124 | BlockMesh69.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1125 | BlockMesh69.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1126 | Weld70.Name = "Part" | |
| 1127 | Weld70.Parent = Part68 | |
| 1128 | Weld70.C0 = CFrame.new(0.246582031, 4.45385742, 0.348571777, 0, -0.707106829, -0.707106829, 0, 0.707106829, -0.707106829, 1, 0, 0) | |
| 1129 | Weld70.Part0 = Part85 | |
| 1130 | Weld70.Part1 = Part68 | |
| 1131 | Part71.Parent = Model0 | |
| 1132 | Part71.Material = Enum.Material.Neon | |
| 1133 | Part71.BrickColor = BrickColor.new("Bright orange")
| |
| 1134 | Part71.Position = Vector3.new(-591.92926, 1511.57019, -449.212799) | |
| 1135 | Part71.Rotation = Vector3.new(-90, -26.5599995, -90) | |
| 1136 | Part71.CanCollide = false | |
| 1137 | Part71.Size = Vector3.new(0.215950891, 0.215950891, 1.39431965) | |
| 1138 | Part71.CFrame = CFrame.new(-591.92926, 1511.57019, -449.212799, 0, 0.894428015, -0.447212011, 0, 0.447212011, 0.894428015, 1, 0, 0) | |
| 1139 | Part71.TopSurface = Enum.SurfaceType.Smooth | |
| 1140 | Part71.Color = Color3.new(0, 1, 0) | |
| 1141 | Part71.Position = Vector3.new(-591.92926, 1511.57019, -449.212799) | |
| 1142 | Part71.Orientation = Vector3.new(-63.4399986, -90, 0) | |
| 1143 | Part71.Color = Color3.new(0, 1, 0) | |
| 1144 | BlockMesh72.Parent = Part71 | |
| 1145 | BlockMesh72.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1146 | BlockMesh72.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1147 | Weld73.Name = "Part" | |
| 1148 | Weld73.Parent = Part71 | |
| 1149 | Weld73.C0 = CFrame.new(1.49932861, 5.85375977, 0.348571777, 0, 0.894428015, -0.447212011, 0, 0.447212011, 0.894428015, 1, 0, 0) | |
| 1150 | Weld73.Part0 = Part85 | |
| 1151 | Weld73.Part1 = Part71 | |
| 1152 | Part74.Parent = Model0 | |
| 1153 | Part74.Material = Enum.Material.Neon | |
| 1154 | Part74.BrickColor = BrickColor.new("Bright orange")
| |
| 1155 | Part74.Position = Vector3.new(-593.715942, 1510.21118, -449.212799) | |
| 1156 | Part74.Rotation = Vector3.new(-90, -45, -90) | |
| 1157 | Part74.CanCollide = false | |
| 1158 | Part74.Size = Vector3.new(0.215950891, 0.215950891, 0.697159708) | |
| 1159 | Part74.CFrame = CFrame.new(-593.715942, 1510.21118, -449.212799, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 1160 | Part74.TopSurface = Enum.SurfaceType.Smooth | |
| 1161 | Part74.Color = Color3.new(0, 1, 0) | |
| 1162 | Part74.Position = Vector3.new(-593.715942, 1510.21118, -449.212799) | |
| 1163 | Part74.Orientation = Vector3.new(-45, -90, 0) | |
| 1164 | Part74.Color = Color3.new(0, 1, 0) | |
| 1165 | BlockMesh75.Parent = Part74 | |
| 1166 | BlockMesh75.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1167 | BlockMesh75.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1168 | Weld76.Name = "Part" | |
| 1169 | Weld76.Parent = Part74 | |
| 1170 | Weld76.C0 = CFrame.new(-0.287353516, 4.49475098, 0.348571777, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 1171 | Weld76.Part0 = Part85 | |
| 1172 | Weld76.Part1 = Part74 | |
| 1173 | Part77.Parent = Model0 | |
| 1174 | Part77.Material = Enum.Material.Neon | |
| 1175 | Part77.BrickColor = BrickColor.new("Bright orange")
| |
| 1176 | Part77.Position = Vector3.new(-592.565857, 1511.3103, -449.212799) | |
| 1177 | Part77.Rotation = Vector3.new(90, -21.1599998, 90) | |
| 1178 | Part77.CanCollide = false | |
| 1179 | Part77.Size = Vector3.new(0.215950891, 0.215950891, 1.85909295) | |
| 1180 | Part77.CFrame = CFrame.new(-592.565857, 1511.3103, -449.212799, 0, -0.932567358, -0.360996127, 0, 0.360996127, -0.932567358, 1, 0, 0) | |
| 1181 | Part77.TopSurface = Enum.SurfaceType.Smooth | |
| 1182 | Part77.Color = Color3.new(0, 1, 0) | |
| 1183 | Part77.Position = Vector3.new(-592.565857, 1511.3103, -449.212799) | |
| 1184 | Part77.Orientation = Vector3.new(68.8399963, -90, 0) | |
| 1185 | Part77.Color = Color3.new(0, 1, 0) | |
| 1186 | BlockMesh78.Parent = Part77 | |
| 1187 | BlockMesh78.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1188 | BlockMesh78.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1189 | Weld79.Name = "Part" | |
| 1190 | Weld79.Parent = Part77 | |
| 1191 | Weld79.C0 = CFrame.new(0.862731934, 5.59387207, 0.348571777, 0, -0.932567358, -0.360996127, 0, 0.360996127, -0.932567358, 1, 0, 0) | |
| 1192 | Weld79.Part0 = Part85 | |
| 1193 | Weld79.Part1 = Part77 | |
| 1194 | Part80.Parent = Model0 | |
| 1195 | Part80.BrickColor = BrickColor.new("Really black")
| |
| 1196 | Part80.Position = Vector3.new(-593.428223, 1509.55127, -449.561371) | |
| 1197 | Part80.CanCollide = false | |
| 1198 | Part80.Size = Vector3.new(2.32386541, 0.580966353, 0.580966473) | |
| 1199 | Part80.CFrame = CFrame.new(-593.428223, 1509.55127, -449.561371, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1200 | Part80.BottomSurface = Enum.SurfaceType.Smooth | |
| 1201 | Part80.TopSurface = Enum.SurfaceType.Smooth | |
| 1202 | Part80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1203 | Part80.Position = Vector3.new(-593.428223, 1509.55127, -449.561371) | |
| 1204 | Part80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1205 | Weld81.Name = "Part" | |
| 1206 | Weld81.Parent = Part80 | |
| 1207 | Weld81.C0 = CFrame.new(0.000366210938, 3.83483887, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1208 | Weld81.Part0 = Part85 | |
| 1209 | Weld81.Part1 = Part80 | |
| 1210 | Part82.Parent = Model0 | |
| 1211 | Part82.Material = Enum.Material.Neon | |
| 1212 | Part82.BrickColor = BrickColor.new("Bright orange")
| |
| 1213 | Part82.Position = Vector3.new(-594.924744, 1509.51306, -449.212799) | |
| 1214 | Part82.Rotation = Vector3.new(-90, -45, -90) | |
| 1215 | Part82.CanCollide = false | |
| 1216 | Part82.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1217 | Part82.CFrame = CFrame.new(-594.924744, 1509.51306, -449.212799, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 1218 | Part82.TopSurface = Enum.SurfaceType.Smooth | |
| 1219 | Part82.Color = Color3.new(0, 1, 0) | |
| 1220 | Part82.Position = Vector3.new(-594.924744, 1509.51306, -449.212799) | |
| 1221 | Part82.Orientation = Vector3.new(-45, -90, 0) | |
| 1222 | Part82.Color = Color3.new(0, 1, 0) | |
| 1223 | BlockMesh83.Parent = Part82 | |
| 1224 | BlockMesh83.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1225 | BlockMesh83.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1226 | Weld84.Name = "Part" | |
| 1227 | Weld84.Parent = Part82 | |
| 1228 | Weld84.C0 = CFrame.new(-1.49615479, 3.79663086, 0.348571777, 0, 0.707106829, -0.707106829, 0, 0.707106829, 0.707106829, 1, 0, 0) | |
| 1229 | Weld84.Part0 = Part85 | |
| 1230 | Weld84.Part1 = Part82 | |
| 1231 | Part85.Name = "Handle" | |
| 1232 | Part85.Parent = Model0 | |
| 1233 | Part85.BrickColor = BrickColor.new("Really black")
| |
| 1234 | Part85.Position = Vector3.new(-593.428589, 1505.71643, -449.561371) | |
| 1235 | Part85.CanCollide = false | |
| 1236 | Part85.Size = Vector3.new(1.16193271, 5.34489202, 0.580966473) | |
| 1237 | Part85.CFrame = CFrame.new(-593.428589, 1505.71643, -449.561371, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1238 | Part85.BottomSurface = Enum.SurfaceType.Smooth | |
| 1239 | Part85.TopSurface = Enum.SurfaceType.Smooth | |
| 1240 | Part85.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1241 | Part85.Position = Vector3.new(-593.428589, 1505.71643, -449.561371) | |
| 1242 | Part85.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1243 | Part86.Parent = Model0 | |
| 1244 | Part86.Material = Enum.Material.Neon | |
| 1245 | Part86.BrickColor = BrickColor.new("Bright orange")
| |
| 1246 | Part86.Position = Vector3.new(-592.500671, 1508.66321, -449.212799) | |
| 1247 | Part86.Rotation = Vector3.new(-90, 26.5699997, -90) | |
| 1248 | Part86.CanCollide = false | |
| 1249 | Part86.Size = Vector3.new(0.215950891, 0.215950891, 1.27812636) | |
| 1250 | Part86.CFrame = CFrame.new(-592.500671, 1508.66321, -449.212799, 0, 0.894426584, 0.447214782, 0, -0.447214782, 0.894426584, 1, 0, 0) | |
| 1251 | Part86.TopSurface = Enum.SurfaceType.Smooth | |
| 1252 | Part86.Color = Color3.new(0, 1, 0) | |
| 1253 | Part86.Position = Vector3.new(-592.500671, 1508.66321, -449.212799) | |
| 1254 | Part86.Orientation = Vector3.new(-63.4300003, 90, 180) | |
| 1255 | Part86.Color = Color3.new(0, 1, 0) | |
| 1256 | BlockMesh87.Parent = Part86 | |
| 1257 | BlockMesh87.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1258 | BlockMesh87.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1259 | Weld88.Name = "Part" | |
| 1260 | Weld88.Parent = Part86 | |
| 1261 | Weld88.C0 = CFrame.new(0.92791748, 2.94677734, 0.348571777, 0, 0.894426584, 0.447214782, 0, -0.447214782, 0.894426584, 1, 0, 0) | |
| 1262 | Weld88.Part0 = Part85 | |
| 1263 | Weld88.Part1 = Part86 | |
| 1264 | Part89.Parent = Model0 | |
| 1265 | Part89.Material = Enum.Material.Neon | |
| 1266 | Part89.BrickColor = BrickColor.new("Bright orange")
| |
| 1267 | Part89.Position = Vector3.new(-595.22937, 1510.36499, -449.212799) | |
| 1268 | Part89.Rotation = Vector3.new(0, -90, 0) | |
| 1269 | Part89.CanCollide = false | |
| 1270 | Part89.Size = Vector3.new(0.215950891, 1.27812624, 0.215950891) | |
| 1271 | Part89.CFrame = CFrame.new(-595.22937, 1510.36499, -449.212799, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1272 | Part89.TopSurface = Enum.SurfaceType.Smooth | |
| 1273 | Part89.Color = Color3.new(0, 1, 0) | |
| 1274 | Part89.Position = Vector3.new(-595.22937, 1510.36499, -449.212799) | |
| 1275 | Part89.Orientation = Vector3.new(0, -90, 0) | |
| 1276 | Part89.Color = Color3.new(0, 1, 0) | |
| 1277 | BlockMesh90.Parent = Part89 | |
| 1278 | BlockMesh90.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 1279 | BlockMesh90.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 1280 | Weld91.Name = "Part" | |
| 1281 | Weld91.Parent = Part89 | |
| 1282 | Weld91.C0 = CFrame.new(-1.80078125, 4.64855957, 0.348571777, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1283 | Weld91.Part0 = Part85 | |
| 1284 | Weld91.Part1 = Part89 | |
| 1285 | Part92.Parent = Model0 | |
| 1286 | Part92.Material = Enum.Material.Neon | |
| 1287 | Part92.BrickColor = BrickColor.new("Bright orange")
| |
| 1288 | Part92.Position = Vector3.new(-594.290649, 1511.3103, -449.212799) | |
| 1289 | Part92.Rotation = Vector3.new(-90, -21.1599998, -90) | |
| 1290 | Part92.CanCollide = false | |
| 1291 | Part92.Size = Vector3.new(0.215950891, 0.215950891, 1.85909295) | |
| 1292 | Part92.CFrame = CFrame.new(-594.290649, 1511.3103, -449.212799, 0, 0.932569265, -0.360991091, 0, 0.360991091, 0.932569265, 1, 0, 0) | |
| 1293 | Part92.TopSurface = Enum.SurfaceType.Smooth | |
| 1294 | Part92.Color = Color3.new(0, 1, 0) | |
| 1295 | Part92.Position = Vector3.new(-594.290649, 1511.3103, -449.212799) | |
| 1296 | Part92.Orientation = Vector3.new(-68.8399963, -90, 0) | |
| 1297 | Part92.Color = Color3.new(0, 1, 0) | |
| 1298 | BlockMesh93.Parent = Part92 | |
| 1299 | BlockMesh93.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1300 | BlockMesh93.Scale = Vector3.new(0.538054049, 0.538054109, 1) | |
| 1301 | Weld94.Name = "Part" | |
| 1302 | Weld94.Parent = Part92 | |
| 1303 | Weld94.C0 = CFrame.new(-0.862060547, 5.59387207, 0.348571777, 0, 0.932569265, -0.360991091, 0, 0.360991091, 0.932569265, 1, 0, 0) | |
| 1304 | Weld94.Part0 = Part85 | |
| 1305 | Weld94.Part1 = Part92 | |
| 1306 | Part95.Parent = Model0 | |
| 1307 | Part95.Material = Enum.Material.Neon | |
| 1308 | Part95.BrickColor = BrickColor.new("Bright orange")
| |
| 1309 | Part95.Position = Vector3.new(-594.944641, 1511.53955, -449.212799) | |
| 1310 | Part95.Rotation = Vector3.new(-90, -63.4300003, -90) | |
| 1311 | Part95.CanCollide = false | |
| 1312 | Part95.Size = Vector3.new(0.215950891, 1.39431942, 0.215950891) | |
| 1313 | Part95.CFrame = CFrame.new(-594.944641, 1511.53955, -449.212799, 0, 0.447216004, -0.894425988, 0, 0.894425988, 0.447216004, 1, 0, 0) | |
| 1314 | Part95.TopSurface = Enum.SurfaceType.Smooth | |
| 1315 | Part95.Color = Color3.new(0, 1, 0) | |
| 1316 | Part95.Position = Vector3.new(-594.944641, 1511.53955, -449.212799) | |
| 1317 | Part95.Orientation = Vector3.new(-26.5699997, -90, 0) | |
| 1318 | Part95.Color = Color3.new(0, 1, 0) | |
| 1319 | BlockMesh96.Parent = Part95 | |
| 1320 | BlockMesh96.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 1321 | BlockMesh96.Scale = Vector3.new(0.538054049, 1, 0.538054168) | |
| 1322 | Weld97.Name = "Part" | |
| 1323 | Weld97.Parent = Part95 | |
| 1324 | Weld97.C0 = CFrame.new(-1.51605225, 5.82312012, 0.348571777, 0, 0.447216004, -0.894425988, 0, 0.894425988, 0.447216004, 1, 0, 0) | |
| 1325 | Weld97.Part0 = Part85 | |
| 1326 | Weld97.Part1 = Part95 | |
| 1327 | Part98.Parent = Model0 | |
| 1328 | Part98.Material = Enum.Material.Neon | |
| 1329 | Part98.BrickColor = BrickColor.new("Bright orange")
| |
| 1330 | Part98.Position = Vector3.new(-591.932434, 1509.51306, -449.212799) | |
| 1331 | Part98.Rotation = Vector3.new(-90, 45, -90) | |
| 1332 | Part98.CanCollide = false | |
| 1333 | Part98.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1334 | Part98.CFrame = CFrame.new(-591.932434, 1509.51306, -449.212799, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 1, 0, 0) | |
| 1335 | Part98.TopSurface = Enum.SurfaceType.Smooth | |
| 1336 | Part98.Color = Color3.new(0, 1, 0) | |
| 1337 | Part98.Position = Vector3.new(-591.932434, 1509.51306, -449.212799) | |
| 1338 | Part98.Orientation = Vector3.new(-45, 90, 180) | |
| 1339 | Part98.Color = Color3.new(0, 1, 0) | |
| 1340 | BlockMesh99.Parent = Part98 | |
| 1341 | BlockMesh99.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1342 | BlockMesh99.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1343 | Weld100.Name = "Part" | |
| 1344 | Weld100.Parent = Part98 | |
| 1345 | Weld100.C0 = CFrame.new(1.49615479, 3.79663086, 0.348571777, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0.707106829, 1, 0, 0) | |
| 1346 | Weld100.Part0 = Part85 | |
| 1347 | Weld100.Part1 = Part98 | |
| 1348 | Part101.Parent = Model0 | |
| 1349 | Part101.Material = Enum.Material.Neon | |
| 1350 | Part101.BrickColor = BrickColor.new("Bright orange")
| |
| 1351 | Part101.Position = Vector3.new(-594.648376, 1510.82947, -449.561371) | |
| 1352 | Part101.Rotation = Vector3.new(0, -90, 0) | |
| 1353 | Part101.CanCollide = false | |
| 1354 | Part101.Shape = Enum.PartType.Cylinder | |
| 1355 | Part101.Size = Vector3.new(0.813352704, 0.580966353, 0.580966473) | |
| 1356 | Part101.CFrame = CFrame.new(-594.648376, 1510.82947, -449.561371, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1357 | Part101.BottomSurface = Enum.SurfaceType.Smooth | |
| 1358 | Part101.TopSurface = Enum.SurfaceType.Smooth | |
| 1359 | Part101.Color = Color3.new(0, 1, 0) | |
| 1360 | Part101.Position = Vector3.new(-594.648376, 1510.82947, -449.561371) | |
| 1361 | Part101.Orientation = Vector3.new(0, -90, 0) | |
| 1362 | Part101.Color = Color3.new(0, 1, 0) | |
| 1363 | Weld102.Name = "Part" | |
| 1364 | Weld102.Parent = Part101 | |
| 1365 | Weld102.C0 = CFrame.new(-1.2197876, 5.11303711, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1366 | Weld102.Part0 = Part85 | |
| 1367 | Weld102.Part1 = Part101 | |
| 1368 | Part103.Parent = Model0 | |
| 1369 | Part103.Material = Enum.Material.Neon | |
| 1370 | Part103.BrickColor = BrickColor.new("Bright orange")
| |
| 1371 | Part103.Position = Vector3.new(-592.208679, 1510.82947, -449.561371) | |
| 1372 | Part103.Rotation = Vector3.new(0, -90, 0) | |
| 1373 | Part103.CanCollide = false | |
| 1374 | Part103.Shape = Enum.PartType.Cylinder | |
| 1375 | Part103.Size = Vector3.new(0.813352406, 0.580966353, 0.580966473) | |
| 1376 | Part103.CFrame = CFrame.new(-592.208679, 1510.82947, -449.561371, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1377 | Part103.BottomSurface = Enum.SurfaceType.Smooth | |
| 1378 | Part103.TopSurface = Enum.SurfaceType.Smooth | |
| 1379 | Part103.Color = Color3.new(0, 1, 0) | |
| 1380 | Part103.Position = Vector3.new(-592.208679, 1510.82947, -449.561371) | |
| 1381 | Part103.Orientation = Vector3.new(0, -90, 0) | |
| 1382 | Part103.Color = Color3.new(0, 1, 0) | |
| 1383 | Weld104.Name = "Part" | |
| 1384 | Weld104.Parent = Part103 | |
| 1385 | Weld104.C0 = CFrame.new(1.21990967, 5.11303711, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1386 | Weld104.Part0 = Part85 | |
| 1387 | Weld104.Part1 = Part103 | |
| 1388 | Part105.Parent = Model0 | |
| 1389 | Part105.Material = Enum.Material.Neon | |
| 1390 | Part105.BrickColor = BrickColor.new("Bright orange")
| |
| 1391 | Part105.Position = Vector3.new(-593.428345, 1506.21008, -449.561371) | |
| 1392 | Part105.Rotation = Vector3.new(-90, 0, -90) | |
| 1393 | Part105.CanCollide = false | |
| 1394 | Part105.Size = Vector3.new(0.813352942, 0.215950891, 4.24105358) | |
| 1395 | Part105.CFrame = CFrame.new(-593.428345, 1506.21008, -449.561371, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1396 | Part105.TopSurface = Enum.SurfaceType.Smooth | |
| 1397 | Part105.Color = Color3.new(0, 1, 0) | |
| 1398 | Part105.Position = Vector3.new(-593.428345, 1506.21008, -449.561371) | |
| 1399 | Part105.Orientation = Vector3.new(-90, -90, 0) | |
| 1400 | Part105.Color = Color3.new(0, 1, 0) | |
| 1401 | BlockMesh106.Parent = Part105 | |
| 1402 | BlockMesh106.Scale = Vector3.new(1, 0.538054228, 1) | |
| 1403 | BlockMesh106.Scale = Vector3.new(1, 0.538054228, 1) | |
| 1404 | Weld107.Name = "Part" | |
| 1405 | Weld107.Parent = Part105 | |
| 1406 | Weld107.C0 = CFrame.new(0.000244140625, 0.493652344, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1407 | Weld107.Part0 = Part85 | |
| 1408 | Weld107.Part1 = Part105 | |
| 1409 | Part108.Parent = Model0 | |
| 1410 | Part108.Material = Enum.Material.SmoothPlastic | |
| 1411 | Part108.BrickColor = BrickColor.new("Really black")
| |
| 1412 | Part108.Position = Vector3.new(-593.428467, 1508.85364, -449.578827) | |
| 1413 | Part108.Rotation = Vector3.new(0, -90, 0) | |
| 1414 | Part108.CanCollide = false | |
| 1415 | Part108.Shape = Enum.PartType.Cylinder | |
| 1416 | Part108.Size = Vector3.new(0.604205012, 0.813353002, 0.697159708) | |
| 1417 | Part108.CFrame = CFrame.new(-593.428467, 1508.85364, -449.578827, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1418 | Part108.BottomSurface = Enum.SurfaceType.Smooth | |
| 1419 | Part108.TopSurface = Enum.SurfaceType.Smooth | |
| 1420 | Part108.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1421 | Part108.Position = Vector3.new(-593.428467, 1508.85364, -449.578827) | |
| 1422 | Part108.Orientation = Vector3.new(0, -90, 0) | |
| 1423 | Part108.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1424 | Weld109.Name = "Part" | |
| 1425 | Weld109.Parent = Part108 | |
| 1426 | Weld109.C0 = CFrame.new(0.000122070313, 3.13720703, -0.0174560547, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1427 | Weld109.Part0 = Part85 | |
| 1428 | Weld109.Part1 = Part108 | |
| 1429 | Part110.Parent = Model0 | |
| 1430 | Part110.Material = Enum.Material.Neon | |
| 1431 | Part110.BrickColor = BrickColor.new("Bright orange")
| |
| 1432 | Part110.Position = Vector3.new(-594.075317, 1509.948, -449.561371) | |
| 1433 | Part110.Rotation = Vector3.new(-90, -35, -90) | |
| 1434 | Part110.CanCollide = false | |
| 1435 | Part110.Size = Vector3.new(0.813352704, 0.215950891, 1.55698907) | |
| 1436 | Part110.CFrame = CFrame.new(-594.075317, 1509.948, -449.561371, 0, 0.819152296, -0.573576152, 0, 0.573576152, 0.819152296, 1, 0, 0) | |
| 1437 | Part110.TopSurface = Enum.SurfaceType.Smooth | |
| 1438 | Part110.Color = Color3.new(0, 1, 0) | |
| 1439 | Part110.Position = Vector3.new(-594.075317, 1509.948, -449.561371) | |
| 1440 | Part110.Orientation = Vector3.new(-55, -90, 0) | |
| 1441 | Part110.Color = Color3.new(0, 1, 0) | |
| 1442 | BlockMesh111.Parent = Part110 | |
| 1443 | BlockMesh111.Scale = Vector3.new(1, 0.538054228, 1) | |
| 1444 | BlockMesh111.Scale = Vector3.new(1, 0.538054228, 1) | |
| 1445 | Weld112.Name = "Part" | |
| 1446 | Weld112.Parent = Part110 | |
| 1447 | Weld112.C0 = CFrame.new(-0.646728516, 4.23156738, 0, 0, 0.819152296, -0.573576152, 0, 0.573576152, 0.819152296, 1, 0, 0) | |
| 1448 | Weld112.Part0 = Part85 | |
| 1449 | Weld112.Part1 = Part110 | |
| 1450 | Part113.Parent = Model0 | |
| 1451 | Part113.BrickColor = BrickColor.new("Bright orange")
| |
| 1452 | Part113.Position = Vector3.new(-592.106567, 1509.86841, -449.561371) | |
| 1453 | Part113.Rotation = Vector3.new(-180, 0, 0) | |
| 1454 | Part113.CanCollide = false | |
| 1455 | Part113.FormFactor = Enum.FormFactor.Custom | |
| 1456 | Part113.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1457 | Part113.CFrame = CFrame.new(-592.106567, 1509.86841, -449.561371, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1458 | Part113.BottomSurface = Enum.SurfaceType.Smooth | |
| 1459 | Part113.TopSurface = Enum.SurfaceType.Smooth | |
| 1460 | Part113.Color = Color3.new(0, 1, 0) | |
| 1461 | Part113.Position = Vector3.new(-592.106567, 1509.86841, -449.561371) | |
| 1462 | Part113.Orientation = Vector3.new(0, 180, 180) | |
| 1463 | Part113.Color = Color3.new(0, 1, 0) | |
| 1464 | SpecialMesh114.Parent = Part113 | |
| 1465 | SpecialMesh114.MeshId = "http://www.roblox.com/asset?id=156292370" | |
| 1466 | SpecialMesh114.Scale = Vector3.new(0.464773089, 0.464773089, 15.1051292) | |
| 1467 | SpecialMesh114.MeshType = Enum.MeshType.FileMesh | |
| 1468 | SpecialMesh114.Scale = Vector3.new(0.464773089, 0.464773089, 15.1051292) | |
| 1469 | Weld115.Name = "Part" | |
| 1470 | Weld115.Parent = Part113 | |
| 1471 | Weld115.C0 = CFrame.new(1.32202148, 4.15197754, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1472 | Weld115.Part0 = Part85 | |
| 1473 | Weld115.Part1 = Part113 | |
| 1474 | Part116.Parent = Model0 | |
| 1475 | Part116.BrickColor = BrickColor.new("Bright orange")
| |
| 1476 | Part116.Position = Vector3.new(-593.747925, 1506.90747, -449.561371) | |
| 1477 | Part116.Rotation = Vector3.new(-180, 0, 0) | |
| 1478 | Part116.CanCollide = false | |
| 1479 | Part116.FormFactor = Enum.FormFactor.Custom | |
| 1480 | Part116.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1481 | Part116.CFrame = CFrame.new(-593.747925, 1506.90747, -449.561371, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1482 | Part116.BottomSurface = Enum.SurfaceType.Smooth | |
| 1483 | Part116.TopSurface = Enum.SurfaceType.Smooth | |
| 1484 | Part116.Color = Color3.new(0, 1, 0) | |
| 1485 | Part116.Position = Vector3.new(-593.747925, 1506.90747, -449.561371) | |
| 1486 | Part116.Orientation = Vector3.new(0, 180, 180) | |
| 1487 | Part116.Color = Color3.new(0, 1, 0) | |
| 1488 | SpecialMesh117.Parent = Part116 | |
| 1489 | SpecialMesh117.MeshId = "http://www.roblox.com/asset?id=156292370" | |
| 1490 | SpecialMesh117.Scale = Vector3.new(0.464773089, 0.464773089, 15.1051292) | |
| 1491 | SpecialMesh117.MeshType = Enum.MeshType.FileMesh | |
| 1492 | SpecialMesh117.Scale = Vector3.new(0.464773089, 0.464773089, 15.1051292) | |
| 1493 | Weld118.Name = "Part" | |
| 1494 | Weld118.Parent = Part116 | |
| 1495 | Weld118.C0 = CFrame.new(-0.319335938, 1.19104004, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1496 | Weld118.Part0 = Part85 | |
| 1497 | Weld118.Part1 = Part116 | |
| 1498 | Part119.Parent = Model0 | |
| 1499 | Part119.Material = Enum.Material.Neon | |
| 1500 | Part119.BrickColor = BrickColor.new("Bright orange")
| |
| 1501 | Part119.Position = Vector3.new(-593.428406, 1503.91638, -449.561371) | |
| 1502 | Part119.Rotation = Vector3.new(0, -90, 0) | |
| 1503 | Part119.CanCollide = false | |
| 1504 | Part119.Shape = Enum.PartType.Cylinder | |
| 1505 | Part119.Size = Vector3.new(0.813352525, 0.580966353, 0.580966473) | |
| 1506 | Part119.CFrame = CFrame.new(-593.428406, 1503.91638, -449.561371, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1507 | Part119.BottomSurface = Enum.SurfaceType.Smooth | |
| 1508 | Part119.TopSurface = Enum.SurfaceType.Smooth | |
| 1509 | Part119.Color = Color3.new(0, 1, 0) | |
| 1510 | Part119.Position = Vector3.new(-593.428406, 1503.91638, -449.561371) | |
| 1511 | Part119.Orientation = Vector3.new(0, -90, 0) | |
| 1512 | Part119.Color = Color3.new(0, 1, 0) | |
| 1513 | Weld120.Name = "Part" | |
| 1514 | Weld120.Parent = Part119 | |
| 1515 | Weld120.C0 = CFrame.new(0.000183105469, -1.80004883, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1516 | Weld120.Part0 = Part85 | |
| 1517 | Weld120.Part1 = Part119 | |
| 1518 | Part121.Parent = Model0 | |
| 1519 | Part121.Material = Enum.Material.Neon | |
| 1520 | Part121.BrickColor = BrickColor.new("Bright orange")
| |
| 1521 | Part121.Position = Vector3.new(-592.741821, 1509.97119, -449.561371) | |
| 1522 | Part121.Rotation = Vector3.new(90, -35, 90) | |
| 1523 | Part121.CanCollide = false | |
| 1524 | Part121.Size = Vector3.new(0.813352704, 0.215950891, 1.66156316) | |
| 1525 | Part121.CFrame = CFrame.new(-592.741821, 1509.97119, -449.561371, 0, -0.819150984, -0.573578, 0, 0.573578, -0.819150984, 1, 0, 0) | |
| 1526 | Part121.TopSurface = Enum.SurfaceType.Smooth | |
| 1527 | Part121.Color = Color3.new(0, 1, 0) | |
| 1528 | Part121.Position = Vector3.new(-592.741821, 1509.97119, -449.561371) | |
| 1529 | Part121.Orientation = Vector3.new(55, -90, 0) | |
| 1530 | Part121.Color = Color3.new(0, 1, 0) | |
| 1531 | BlockMesh122.Parent = Part121 | |
| 1532 | BlockMesh122.Scale = Vector3.new(1, 0.538054228, 1) | |
| 1533 | BlockMesh122.Scale = Vector3.new(1, 0.538054228, 1) | |
| 1534 | Weld123.Name = "Part" | |
| 1535 | Weld123.Parent = Part121 | |
| 1536 | Weld123.C0 = CFrame.new(0.686767578, 4.25476074, 0, 0, -0.819150984, -0.573578, 0, 0.573578, -0.819150984, 1, 0, 0) | |
| 1537 | Weld123.Part0 = Part85 | |
| 1538 | Weld123.Part1 = Part121 | |
| 1539 | Part124.Parent = Model0 | |
| 1540 | Part124.BrickColor = BrickColor.new("Bright orange")
| |
| 1541 | Part124.Position = Vector3.new(-593.108704, 1505.57141, -449.561371) | |
| 1542 | Part124.Rotation = Vector3.new(-180, 0, -180) | |
| 1543 | Part124.CanCollide = false | |
| 1544 | Part124.FormFactor = Enum.FormFactor.Custom | |
| 1545 | Part124.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1546 | Part124.CFrame = CFrame.new(-593.108704, 1505.57141, -449.561371, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1547 | Part124.BottomSurface = Enum.SurfaceType.Smooth | |
| 1548 | Part124.TopSurface = Enum.SurfaceType.Smooth | |
| 1549 | Part124.Color = Color3.new(0, 1, 0) | |
| 1550 | Part124.Position = Vector3.new(-593.108704, 1505.57141, -449.561371) | |
| 1551 | Part124.Orientation = Vector3.new(0, 180, 0) | |
| 1552 | Part124.Color = Color3.new(0, 1, 0) | |
| 1553 | SpecialMesh125.Parent = Part124 | |
| 1554 | SpecialMesh125.MeshId = "http://www.roblox.com/asset?id=156292355" | |
| 1555 | SpecialMesh125.Scale = Vector3.new(0.580966413, 0.580966413, 5.8096652) | |
| 1556 | SpecialMesh125.MeshType = Enum.MeshType.FileMesh | |
| 1557 | SpecialMesh125.Scale = Vector3.new(0.580966413, 0.580966413, 5.8096652) | |
| 1558 | Weld126.Name = "Part" | |
| 1559 | Weld126.Parent = Part124 | |
| 1560 | Weld126.C0 = CFrame.new(0.319885254, -0.145019531, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1561 | Weld126.Part0 = Part85 | |
| 1562 | Weld126.Part1 = Part124 | |
| 1563 | Part127.Parent = Model0 | |
| 1564 | Part127.BrickColor = BrickColor.new("Bright orange")
| |
| 1565 | Part127.Position = Vector3.new(-594.67749, 1509.98669, -449.561371) | |
| 1566 | Part127.Rotation = Vector3.new(-180, 0, 0) | |
| 1567 | Part127.CanCollide = false | |
| 1568 | Part127.FormFactor = Enum.FormFactor.Custom | |
| 1569 | Part127.Size = Vector3.new(0.215950891, 0.215950891, 0.813353121) | |
| 1570 | Part127.CFrame = CFrame.new(-594.67749, 1509.98669, -449.561371, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1571 | Part127.BottomSurface = Enum.SurfaceType.Smooth | |
| 1572 | Part127.TopSurface = Enum.SurfaceType.Smooth | |
| 1573 | Part127.Color = Color3.new(0, 1, 0) | |
| 1574 | Part127.Position = Vector3.new(-594.67749, 1509.98669, -449.561371) | |
| 1575 | Part127.Orientation = Vector3.new(0, 180, 180) | |
| 1576 | Part127.Color = Color3.new(0, 1, 0) | |
| 1577 | SpecialMesh128.Parent = Part127 | |
| 1578 | SpecialMesh128.MeshId = "http://www.roblox.com/asset?id=156292370" | |
| 1579 | SpecialMesh128.Scale = Vector3.new(0.464773089, 0.464773089, 15.1051292) | |
| 1580 | SpecialMesh128.MeshType = Enum.MeshType.FileMesh | |
| 1581 | SpecialMesh128.Scale = Vector3.new(0.464773089, 0.464773089, 15.1051292) | |
| 1582 | Weld129.Name = "Part" | |
| 1583 | Weld129.Parent = Part127 | |
| 1584 | Weld129.C0 = CFrame.new(-1.24890137, 4.27026367, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1585 | Weld129.Part0 = Part85 | |
| 1586 | Weld129.Part1 = Part127 | |
| 1587 | Part130.Parent = Model0 | |
| 1588 | Part130.Material = Enum.Material.SmoothPlastic | |
| 1589 | Part130.BrickColor = BrickColor.new("Bright orange")
| |
| 1590 | Part130.Position = Vector3.new(-593.428467, 1508.85364, -449.561371) | |
| 1591 | Part130.CanCollide = false | |
| 1592 | Part130.FormFactor = Enum.FormFactor.Custom | |
| 1593 | Part130.Size = Vector3.new(0.348579586, 0.348579794, 0.697159171) | |
| 1594 | Part130.CFrame = CFrame.new(-593.428467, 1508.85364, -449.561371, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1595 | Part130.Color = Color3.new(0, 1, 0) | |
| 1596 | Part130.Position = Vector3.new(-593.428467, 1508.85364, -449.561371) | |
| 1597 | Part130.Color = Color3.new(0, 1, 0) | |
| 1598 | SpecialMesh131.Parent = Part130 | |
| 1599 | SpecialMesh131.MeshId = "http://www.roblox.com/asset?id=156292343" | |
| 1600 | SpecialMesh131.Scale = Vector3.new(2.90483189, 2.90483212, 12.7812634) | |
| 1601 | SpecialMesh131.MeshType = Enum.MeshType.FileMesh | |
| 1602 | SpecialMesh131.Scale = Vector3.new(2.90483189, 2.90483212, 12.7812634) | |
| 1603 | Weld132.Name = "Part" | |
| 1604 | Weld132.Parent = Part130 | |
| 1605 | Weld132.C0 = CFrame.new(0.000122070313, 3.13720703, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1606 | Weld132.Part0 = Part85 | |
| 1607 | Weld132.Part1 = Part130 | |
| 1608 | Part133.Parent = Model0 | |
| 1609 | Part133.Material = Enum.Material.Neon | |
| 1610 | Part133.BrickColor = BrickColor.new("Bright orange")
| |
| 1611 | Part133.Position = Vector3.new(-593.406616, 1508.87427, -449.890106) | |
| 1612 | Part133.Rotation = Vector3.new(-90, 0, -90) | |
| 1613 | Part133.CanCollide = false | |
| 1614 | Part133.Size = Vector3.new(0.215950891, 0.215950891, 0.334654003) | |
| 1615 | Part133.CFrame = CFrame.new(-593.406616, 1508.87427, -449.890106, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1616 | Part133.TopSurface = Enum.SurfaceType.Smooth | |
| 1617 | Part133.Color = Color3.new(0, 1, 0) | |
| 1618 | Part133.Position = Vector3.new(-593.406616, 1508.87427, -449.890106) | |
| 1619 | Part133.Orientation = Vector3.new(-90, -90, 0) | |
| 1620 | Part133.Color = Color3.new(0, 1, 0) | |
| 1621 | BlockMesh134.Parent = Part133 | |
| 1622 | BlockMesh134.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1623 | BlockMesh134.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1624 | Weld135.Name = "Part" | |
| 1625 | Weld135.Parent = Part133 | |
| 1626 | Weld135.C0 = CFrame.new(0.0219726563, 3.15783691, -0.328735352, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1627 | Weld135.Part0 = Part85 | |
| 1628 | Weld135.Part1 = Part133 | |
| 1629 | Part136.Parent = Model0 | |
| 1630 | Part136.Material = Enum.Material.Neon | |
| 1631 | Part136.BrickColor = BrickColor.new("Bright orange")
| |
| 1632 | Part136.Position = Vector3.new(-593.321594, 1508.70667, -449.890106) | |
| 1633 | Part136.Rotation = Vector3.new(90, 75, 90) | |
| 1634 | Part136.CanCollide = false | |
| 1635 | Part136.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1636 | Part136.CFrame = CFrame.new(-593.321594, 1508.70667, -449.890106, 0, -0.2588211, 0.965925336, 0, -0.965925336, -0.2588211, 1, 0, 0) | |
| 1637 | Part136.TopSurface = Enum.SurfaceType.Smooth | |
| 1638 | Part136.Color = Color3.new(0, 1, 0) | |
| 1639 | Part136.Position = Vector3.new(-593.321594, 1508.70667, -449.890106) | |
| 1640 | Part136.Orientation = Vector3.new(15, 90, 180) | |
| 1641 | Part136.Color = Color3.new(0, 1, 0) | |
| 1642 | BlockMesh137.Parent = Part136 | |
| 1643 | BlockMesh137.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1644 | BlockMesh137.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1645 | Weld138.Name = "Part" | |
| 1646 | Weld138.Parent = Part136 | |
| 1647 | Weld138.C0 = CFrame.new(0.106994629, 2.99023438, -0.328735352, 0, -0.2588211, 0.965925336, 0, -0.965925336, -0.2588211, 1, 0, 0) | |
| 1648 | Weld138.Part0 = Part85 | |
| 1649 | Weld138.Part1 = Part136 | |
| 1650 | Part139.Parent = Model0 | |
| 1651 | Part139.Material = Enum.Material.Neon | |
| 1652 | Part139.BrickColor = BrickColor.new("Bright orange")
| |
| 1653 | Part139.Position = Vector3.new(-593.499817, 1508.87427, -449.890106) | |
| 1654 | Part139.Rotation = Vector3.new(-90, 0, -90) | |
| 1655 | Part139.CanCollide = false | |
| 1656 | Part139.Size = Vector3.new(0.215950891, 0.215950891, 0.424293667) | |
| 1657 | Part139.CFrame = CFrame.new(-593.499817, 1508.87427, -449.890106, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1658 | Part139.TopSurface = Enum.SurfaceType.Smooth | |
| 1659 | Part139.Color = Color3.new(0, 1, 0) | |
| 1660 | Part139.Position = Vector3.new(-593.499817, 1508.87427, -449.890106) | |
| 1661 | Part139.Orientation = Vector3.new(-90, -90, 0) | |
| 1662 | Part139.Color = Color3.new(0, 1, 0) | |
| 1663 | BlockMesh140.Parent = Part139 | |
| 1664 | BlockMesh140.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1665 | BlockMesh140.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1666 | Weld141.Name = "Part" | |
| 1667 | Weld141.Parent = Part139 | |
| 1668 | Weld141.C0 = CFrame.new(-0.0712280273, 3.15783691, -0.328735352, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1669 | Weld141.Part0 = Part85 | |
| 1670 | Weld141.Part1 = Part139 | |
| 1671 | Part142.Parent = Model0 | |
| 1672 | Part142.Material = Enum.Material.Neon | |
| 1673 | Part142.BrickColor = BrickColor.new("Bright orange")
| |
| 1674 | Part142.Position = Vector3.new(-593.59082, 1509.04309, -449.890106) | |
| 1675 | Part142.Rotation = Vector3.new(-90, 75, -90) | |
| 1676 | Part142.CanCollide = false | |
| 1677 | Part142.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1678 | Part142.CFrame = CFrame.new(-593.59082, 1509.04309, -449.890106, 0, 0.258818984, 0.965925872, 0, -0.965925872, 0.258818984, 1, 0, 0) | |
| 1679 | Part142.TopSurface = Enum.SurfaceType.Smooth | |
| 1680 | Part142.Color = Color3.new(0, 1, 0) | |
| 1681 | Part142.Position = Vector3.new(-593.59082, 1509.04309, -449.890106) | |
| 1682 | Part142.Orientation = Vector3.new(-15, 90, 180) | |
| 1683 | Part142.Color = Color3.new(0, 1, 0) | |
| 1684 | BlockMesh143.Parent = Part142 | |
| 1685 | BlockMesh143.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1686 | BlockMesh143.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1687 | Weld144.Name = "Part" | |
| 1688 | Weld144.Parent = Part142 | |
| 1689 | Weld144.C0 = CFrame.new(-0.162231445, 3.32666016, -0.328735352, 0, 0.258818984, 0.965925872, 0, -0.965925872, 0.258818984, 1, 0, 0) | |
| 1690 | Weld144.Part0 = Part85 | |
| 1691 | Weld144.Part1 = Part142 | |
| 1692 | Part145.Parent = Model0 | |
| 1693 | Part145.Material = Enum.Material.Neon | |
| 1694 | Part145.BrickColor = BrickColor.new("Bright orange")
| |
| 1695 | Part145.Position = Vector3.new(-593.586975, 1508.70728, -449.890106) | |
| 1696 | Part145.Rotation = Vector3.new(90, 75, 90) | |
| 1697 | Part145.CanCollide = false | |
| 1698 | Part145.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1699 | Part145.CFrame = CFrame.new(-593.586975, 1508.70728, -449.890106, 0, -0.2588211, 0.965925336, 0, -0.965925336, -0.2588211, 1, 0, 0) | |
| 1700 | Part145.TopSurface = Enum.SurfaceType.Smooth | |
| 1701 | Part145.Color = Color3.new(0, 1, 0) | |
| 1702 | Part145.Position = Vector3.new(-593.586975, 1508.70728, -449.890106) | |
| 1703 | Part145.Orientation = Vector3.new(15, 90, 180) | |
| 1704 | Part145.Color = Color3.new(0, 1, 0) | |
| 1705 | BlockMesh146.Parent = Part145 | |
| 1706 | BlockMesh146.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1707 | BlockMesh146.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1708 | Weld147.Name = "Part" | |
| 1709 | Weld147.Parent = Part145 | |
| 1710 | Weld147.C0 = CFrame.new(-0.15838623, 2.99084473, -0.328735352, 0, -0.2588211, 0.965925336, 0, -0.965925336, -0.2588211, 1, 0, 0) | |
| 1711 | Weld147.Part0 = Part85 | |
| 1712 | Weld147.Part1 = Part145 | |
| 1713 | Part148.Parent = Model0 | |
| 1714 | Part148.Material = Enum.Material.Neon | |
| 1715 | Part148.BrickColor = BrickColor.new("Bright orange")
| |
| 1716 | Part148.Position = Vector3.new(-593.227112, 1508.87427, -449.890106) | |
| 1717 | Part148.Rotation = Vector3.new(-90, 0, -90) | |
| 1718 | Part148.CanCollide = false | |
| 1719 | Part148.Size = Vector3.new(0.215950891, 0.215950891, 0.424293667) | |
| 1720 | Part148.CFrame = CFrame.new(-593.227112, 1508.87427, -449.890106, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1721 | Part148.TopSurface = Enum.SurfaceType.Smooth | |
| 1722 | Part148.Color = Color3.new(0, 1, 0) | |
| 1723 | Part148.Position = Vector3.new(-593.227112, 1508.87427, -449.890106) | |
| 1724 | Part148.Orientation = Vector3.new(-90, -90, 0) | |
| 1725 | Part148.Color = Color3.new(0, 1, 0) | |
| 1726 | BlockMesh149.Parent = Part148 | |
| 1727 | BlockMesh149.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1728 | BlockMesh149.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1729 | Weld150.Name = "Part" | |
| 1730 | Weld150.Parent = Part148 | |
| 1731 | Weld150.C0 = CFrame.new(0.201477051, 3.15783691, -0.328735352, 0, 1, 0, 0, 0, 1, 1, 0, 0) | |
| 1732 | Weld150.Part0 = Part85 | |
| 1733 | Weld150.Part1 = Part148 | |
| 1734 | Part151.Parent = Model0 | |
| 1735 | Part151.Material = Enum.Material.Neon | |
| 1736 | Part151.BrickColor = BrickColor.new("Bright orange")
| |
| 1737 | Part151.Position = Vector3.new(-593.587097, 1508.8866, -449.890106) | |
| 1738 | Part151.Rotation = Vector3.new(180, 90, 0) | |
| 1739 | Part151.CanCollide = false | |
| 1740 | Part151.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1741 | Part151.CFrame = CFrame.new(-593.587097, 1508.8866, -449.890106, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 1742 | Part151.TopSurface = Enum.SurfaceType.Smooth | |
| 1743 | Part151.Color = Color3.new(0, 1, 0) | |
| 1744 | Part151.Position = Vector3.new(-593.587097, 1508.8866, -449.890106) | |
| 1745 | Part151.Orientation = Vector3.new(0, 90, 180) | |
| 1746 | Part151.Color = Color3.new(0, 1, 0) | |
| 1747 | BlockMesh152.Parent = Part151 | |
| 1748 | BlockMesh152.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1749 | BlockMesh152.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1750 | Weld153.Name = "Part" | |
| 1751 | Weld153.Parent = Part151 | |
| 1752 | Weld153.C0 = CFrame.new(-0.158508301, 3.17016602, -0.328735352, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 1753 | Weld153.Part0 = Part85 | |
| 1754 | Weld153.Part1 = Part151 | |
| 1755 | Part154.Parent = Model0 | |
| 1756 | Part154.Material = Enum.Material.Neon | |
| 1757 | Part154.BrickColor = BrickColor.new("Bright orange")
| |
| 1758 | Part154.Position = Vector3.new(-593.321838, 1509.04309, -449.890106) | |
| 1759 | Part154.Rotation = Vector3.new(-90, 75, -90) | |
| 1760 | Part154.CanCollide = false | |
| 1761 | Part154.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1762 | Part154.CFrame = CFrame.new(-593.321838, 1509.04309, -449.890106, 0, 0.258818984, 0.965925872, 0, -0.965925872, 0.258818984, 1, 0, 0) | |
| 1763 | Part154.TopSurface = Enum.SurfaceType.Smooth | |
| 1764 | Part154.Color = Color3.new(0, 1, 0) | |
| 1765 | Part154.Position = Vector3.new(-593.321838, 1509.04309, -449.890106) | |
| 1766 | Part154.Orientation = Vector3.new(-15, 90, 180) | |
| 1767 | Part154.Color = Color3.new(0, 1, 0) | |
| 1768 | BlockMesh155.Parent = Part154 | |
| 1769 | BlockMesh155.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1770 | BlockMesh155.Scale = Vector3.new(0.207546011, 0.207546011, 0.857857406) | |
| 1771 | Weld156.Name = "Part" | |
| 1772 | Weld156.Parent = Part154 | |
| 1773 | Weld156.C0 = CFrame.new(0.106750488, 3.32666016, -0.328735352, 0, 0.258818984, 0.965925872, 0, -0.965925872, 0.258818984, 1, 0, 0) | |
| 1774 | Weld156.Part0 = Part85 | |
| 1775 | Weld156.Part1 = Part154 | |
| 1776 | Part157.Parent = Model0 | |
| 1777 | Part157.Material = Enum.Material.Neon | |
| 1778 | Part157.BrickColor = BrickColor.new("Bright orange")
| |
| 1779 | Part157.Position = Vector3.new(-593.443848, 1508.62817, -449.890106) | |
| 1780 | Part157.Rotation = Vector3.new(0, -90, 0) | |
| 1781 | Part157.CanCollide = false | |
| 1782 | Part157.Size = Vector3.new(0.215950891, 0.215950891, 0.484053284) | |
| 1783 | Part157.CFrame = CFrame.new(-593.443848, 1508.62817, -449.890106, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1784 | Part157.TopSurface = Enum.SurfaceType.Smooth | |
| 1785 | Part157.Color = Color3.new(0, 1, 0) | |
| 1786 | Part157.Position = Vector3.new(-593.443848, 1508.62817, -449.890106) | |
| 1787 | Part157.Orientation = Vector3.new(0, -90, 0) | |
| 1788 | Part157.Color = Color3.new(0, 1, 0) | |
| 1789 | BlockMesh158.Parent = Part157 | |
| 1790 | BlockMesh158.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1791 | BlockMesh158.Scale = Vector3.new(0.207546011, 0.207546011, 1) | |
| 1792 | Weld159.Name = "Part" | |
| 1793 | Weld159.Parent = Part157 | |
| 1794 | Weld159.C0 = CFrame.new(-0.0152587891, 2.91174316, -0.328735352, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1795 | Weld159.Part0 = Part85 | |
| 1796 | Weld159.Part1 = Part157 | |
| 1797 | Part160.Parent = Model0 | |
| 1798 | Part160.Material = Enum.Material.Neon | |
| 1799 | Part160.BrickColor = BrickColor.new("Bright orange")
| |
| 1800 | Part160.Position = Vector3.new(-593.864746, 1502.75232, -449.212799) | |
| 1801 | Part160.Rotation = Vector3.new(-90, -40, -90) | |
| 1802 | Part160.CanCollide = false | |
| 1803 | Part160.Size = Vector3.new(0.215950891, 0.215950891, 0.563538313) | |
| 1804 | Part160.CFrame = CFrame.new(-593.864746, 1502.75232, -449.212799, 0, 0.766044974, -0.64278698, 0, 0.64278698, 0.766044974, 1, 0, 0) | |
| 1805 | Part160.TopSurface = Enum.SurfaceType.Smooth | |
| 1806 | Part160.Color = Color3.new(0, 1, 0) | |
| 1807 | Part160.Position = Vector3.new(-593.864746, 1502.75232, -449.212799) | |
| 1808 | Part160.Orientation = Vector3.new(-50, -90, 0) | |
| 1809 | Part160.Color = Color3.new(0, 1, 0) | |
| 1810 | BlockMesh161.Parent = Part160 | |
| 1811 | BlockMesh161.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1812 | BlockMesh161.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1813 | Weld162.Name = "Part" | |
| 1814 | Weld162.Parent = Part160 | |
| 1815 | Weld162.C0 = CFrame.new(-0.436157227, -2.96411133, 0.348571777, 0, 0.766044974, -0.64278698, 0, 0.64278698, 0.766044974, 1, 0, 0) | |
| 1816 | Weld162.Part0 = Part85 | |
| 1817 | Weld162.Part1 = Part160 | |
| 1818 | Part163.Parent = Model0 | |
| 1819 | Part163.Material = Enum.Material.Neon | |
| 1820 | Part163.BrickColor = BrickColor.new("Bright orange")
| |
| 1821 | Part163.Position = Vector3.new(-593.417786, 1502.5509, -449.212799) | |
| 1822 | Part163.Rotation = Vector3.new(180, 90, 0) | |
| 1823 | Part163.CanCollide = false | |
| 1824 | Part163.Size = Vector3.new(0.215950891, 0.215950891, 0.63325429) | |
| 1825 | Part163.CFrame = CFrame.new(-593.417786, 1502.5509, -449.212799, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 1826 | Part163.TopSurface = Enum.SurfaceType.Smooth | |
| 1827 | Part163.Color = Color3.new(0, 1, 0) | |
| 1828 | Part163.Position = Vector3.new(-593.417786, 1502.5509, -449.212799) | |
| 1829 | Part163.Orientation = Vector3.new(0, 90, 180) | |
| 1830 | Part163.Color = Color3.new(0, 1, 0) | |
| 1831 | BlockMesh164.Parent = Part163 | |
| 1832 | BlockMesh164.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1833 | BlockMesh164.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1834 | Weld165.Name = "Part" | |
| 1835 | Weld165.Parent = Part163 | |
| 1836 | Weld165.C0 = CFrame.new(0.0108032227, -3.16552734, 0.348571777, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 1837 | Weld165.Part0 = Part85 | |
| 1838 | Weld165.Part1 = Part163 | |
| 1839 | Part166.Parent = Model0 | |
| 1840 | Part166.BrickColor = BrickColor.new("Really black")
| |
| 1841 | Part166.Position = Vector3.new(-593.428711, 1503.04443, -449.561371) | |
| 1842 | Part166.Rotation = Vector3.new(0, -90, 0) | |
| 1843 | Part166.CanCollide = false | |
| 1844 | Part166.Shape = Enum.PartType.Cylinder | |
| 1845 | Part166.Size = Vector3.new(0.580965996, 1.16193259, 1.16193295) | |
| 1846 | Part166.CFrame = CFrame.new(-593.428711, 1503.04443, -449.561371, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1847 | Part166.BottomSurface = Enum.SurfaceType.Smooth | |
| 1848 | Part166.TopSurface = Enum.SurfaceType.Smooth | |
| 1849 | Part166.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1850 | Part166.Position = Vector3.new(-593.428711, 1503.04443, -449.561371) | |
| 1851 | Part166.Orientation = Vector3.new(0, -90, 0) | |
| 1852 | Part166.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1853 | Weld167.Name = "Part" | |
| 1854 | Weld167.Parent = Part166 | |
| 1855 | Weld167.C0 = CFrame.new(-0.000122070313, -2.67199707, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1856 | Weld167.Part0 = Part85 | |
| 1857 | Weld167.Part1 = Part166 | |
| 1858 | Part168.Parent = Model0 | |
| 1859 | Part168.Material = Enum.Material.Neon | |
| 1860 | Part168.BrickColor = BrickColor.new("Bright orange")
| |
| 1861 | Part168.Position = Vector3.new(-592.981018, 1502.75879, -449.212799) | |
| 1862 | Part168.Rotation = Vector3.new(90, -40, 90) | |
| 1863 | Part168.CanCollide = false | |
| 1864 | Part168.Size = Vector3.new(0.215950891, 0.215950891, 0.575157702) | |
| 1865 | Part168.CFrame = CFrame.new(-592.981018, 1502.75879, -449.212799, 0, -0.766043186, -0.642789185, 0, 0.642789185, -0.766043186, 1, 0, 0) | |
| 1866 | Part168.TopSurface = Enum.SurfaceType.Smooth | |
| 1867 | Part168.Color = Color3.new(0, 1, 0) | |
| 1868 | Part168.Position = Vector3.new(-592.981018, 1502.75879, -449.212799) | |
| 1869 | Part168.Orientation = Vector3.new(50, -90, 0) | |
| 1870 | Part168.Color = Color3.new(0, 1, 0) | |
| 1871 | BlockMesh169.Parent = Part168 | |
| 1872 | BlockMesh169.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1873 | BlockMesh169.Scale = Vector3.new(0.538054049, 0.538054228, 1) | |
| 1874 | Weld170.Name = "Part" | |
| 1875 | Weld170.Parent = Part168 | |
| 1876 | Weld170.C0 = CFrame.new(0.447570801, -2.9576416, 0.348571777, 0, -0.766043186, -0.642789185, 0, 0.642789185, -0.766043186, 1, 0, 0) | |
| 1877 | Weld170.Part0 = Part85 | |
| 1878 | Weld170.Part1 = Part168 | |
| 1879 | Part171.Parent = Model0 | |
| 1880 | Part171.Material = Enum.Material.Neon | |
| 1881 | Part171.BrickColor = BrickColor.new("Bright orange")
| |
| 1882 | Part171.Position = Vector3.new(-593.466492, 1508.89026, -449.277008) | |
| 1883 | Part171.Rotation = Vector3.new(-90, 0, 90) | |
| 1884 | Part171.CanCollide = false | |
| 1885 | Part171.Size = Vector3.new(0.215950891, 0.215950891, 0.314509183) | |
| 1886 | Part171.CFrame = CFrame.new(-593.466492, 1508.89026, -449.277008, 0, -1, 0, 0, 0, 1, -1, 0, 0) | |
| 1887 | Part171.TopSurface = Enum.SurfaceType.Smooth | |
| 1888 | Part171.Color = Color3.new(0, 1, 0) | |
| 1889 | Part171.Position = Vector3.new(-593.466492, 1508.89026, -449.277008) | |
| 1890 | Part171.Orientation = Vector3.new(-90, 90, 0) | |
| 1891 | Part171.Color = Color3.new(0, 1, 0) | |
| 1892 | BlockMesh172.Parent = Part171 | |
| 1893 | BlockMesh172.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 1894 | BlockMesh172.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 1895 | Weld173.Name = "Part" | |
| 1896 | Weld173.Parent = Part171 | |
| 1897 | Weld173.C0 = CFrame.new(-0.037902832, 3.17382813, 0.284362793, 0, -1, 0, 0, 0, 1, -1, 0, 0) | |
| 1898 | Weld173.Part0 = Part85 | |
| 1899 | Weld173.Part1 = Part171 | |
| 1900 | Part174.Parent = Model0 | |
| 1901 | Part174.Material = Enum.Material.Neon | |
| 1902 | Part174.BrickColor = BrickColor.new("Bright orange")
| |
| 1903 | Part174.Position = Vector3.new(-593.310791, 1508.75305, -449.281769) | |
| 1904 | Part174.Rotation = Vector3.new(90, -75, -90) | |
| 1905 | Part174.CanCollide = false | |
| 1906 | Part174.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1907 | Part174.CFrame = CFrame.new(-593.310791, 1508.75305, -449.281769, 0, 0.258818984, -0.965925872, 0, -0.965925872, -0.258818984, -1, 0, 0) | |
| 1908 | Part174.TopSurface = Enum.SurfaceType.Smooth | |
| 1909 | Part174.Color = Color3.new(0, 1, 0) | |
| 1910 | Part174.Position = Vector3.new(-593.310791, 1508.75305, -449.281769) | |
| 1911 | Part174.Orientation = Vector3.new(15, -90, 180) | |
| 1912 | Part174.Color = Color3.new(0, 1, 0) | |
| 1913 | BlockMesh175.Parent = Part174 | |
| 1914 | BlockMesh175.Scale = Vector3.new(0.175985396, 0.175985396, 0.72740674) | |
| 1915 | BlockMesh175.Scale = Vector3.new(0.175985396, 0.175985396, 0.72740674) | |
| 1916 | Weld176.Name = "Part" | |
| 1917 | Weld176.Parent = Part174 | |
| 1918 | Weld176.C0 = CFrame.new(0.117797852, 3.03662109, 0.279602051, 0, 0.258818984, -0.965925872, 0, -0.965925872, -0.258818984, -1, 0, 0) | |
| 1919 | Weld176.Part0 = Part85 | |
| 1920 | Weld176.Part1 = Part174 | |
| 1921 | Part177.Parent = Model0 | |
| 1922 | Part177.Material = Enum.Material.Neon | |
| 1923 | Part177.BrickColor = BrickColor.new("Bright orange")
| |
| 1924 | Part177.Position = Vector3.new(-593.297058, 1508.90112, -449.277069) | |
| 1925 | Part177.Rotation = Vector3.new(-180, -90, 0) | |
| 1926 | Part177.CanCollide = false | |
| 1927 | Part177.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1928 | Part177.CFrame = CFrame.new(-593.297058, 1508.90112, -449.277069, 0, 0, -1, 0, -1, 0, -1, 0, 0) | |
| 1929 | Part177.TopSurface = Enum.SurfaceType.Smooth | |
| 1930 | Part177.Color = Color3.new(0, 1, 0) | |
| 1931 | Part177.Position = Vector3.new(-593.297058, 1508.90112, -449.277069) | |
| 1932 | Part177.Orientation = Vector3.new(0, -90, 180) | |
| 1933 | Part177.Color = Color3.new(0, 1, 0) | |
| 1934 | BlockMesh178.Parent = Part177 | |
| 1935 | BlockMesh178.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 1936 | BlockMesh178.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 1937 | Weld179.Name = "Part" | |
| 1938 | Weld179.Parent = Part177 | |
| 1939 | Weld179.C0 = CFrame.new(0.131530762, 3.18469238, 0.284301758, 0, 0, -1, 0, -1, -0, -1, 0, -0) | |
| 1940 | Weld179.Part0 = Part85 | |
| 1941 | Weld179.Part1 = Part177 | |
| 1942 | Part180.Parent = Model0 | |
| 1943 | Part180.Material = Enum.Material.Neon | |
| 1944 | Part180.BrickColor = BrickColor.new("Bright orange")
| |
| 1945 | Part180.Position = Vector3.new(-593.378784, 1508.8905, -449.277069) | |
| 1946 | Part180.Rotation = Vector3.new(-90, 0, 90) | |
| 1947 | Part180.CanCollide = false | |
| 1948 | Part180.Size = Vector3.new(0.215950891, 0.215950891, 0.398752898) | |
| 1949 | Part180.CFrame = CFrame.new(-593.378784, 1508.8905, -449.277069, 0, -1, 0, 0, 0, 1, -1, 0, 0) | |
| 1950 | Part180.TopSurface = Enum.SurfaceType.Smooth | |
| 1951 | Part180.Color = Color3.new(0, 1, 0) | |
| 1952 | Part180.Position = Vector3.new(-593.378784, 1508.8905, -449.277069) | |
| 1953 | Part180.Orientation = Vector3.new(-90, 90, 0) | |
| 1954 | Part180.Color = Color3.new(0, 1, 0) | |
| 1955 | BlockMesh181.Parent = Part180 | |
| 1956 | BlockMesh181.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 1957 | BlockMesh181.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 1958 | Weld182.Name = "Part" | |
| 1959 | Weld182.Parent = Part180 | |
| 1960 | Weld182.C0 = CFrame.new(0.0498046875, 3.17407227, 0.284301758, 0, -1, 0, 0, 0, 1, -1, 0, 0) | |
| 1961 | Weld182.Part0 = Part85 | |
| 1962 | Weld182.Part1 = Part180 | |
| 1963 | Part183.Parent = Model0 | |
| 1964 | Part183.Material = Enum.Material.Neon | |
| 1965 | Part183.BrickColor = BrickColor.new("Bright orange")
| |
| 1966 | Part183.Position = Vector3.new(-593.63501, 1508.8905, -449.277008) | |
| 1967 | Part183.Rotation = Vector3.new(-90, 0, 90) | |
| 1968 | Part183.CanCollide = false | |
| 1969 | Part183.Size = Vector3.new(0.215950891, 0.215950891, 0.398752898) | |
| 1970 | Part183.CFrame = CFrame.new(-593.63501, 1508.8905, -449.277008, 0, -1, 0, 0, 0, 1, -1, 0, 0) | |
| 1971 | Part183.TopSurface = Enum.SurfaceType.Smooth | |
| 1972 | Part183.Color = Color3.new(0, 1, 0) | |
| 1973 | Part183.Position = Vector3.new(-593.63501, 1508.8905, -449.277008) | |
| 1974 | Part183.Orientation = Vector3.new(-90, 90, 0) | |
| 1975 | Part183.Color = Color3.new(0, 1, 0) | |
| 1976 | BlockMesh184.Parent = Part183 | |
| 1977 | BlockMesh184.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 1978 | BlockMesh184.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 1979 | Weld185.Name = "Part" | |
| 1980 | Weld185.Parent = Part183 | |
| 1981 | Weld185.C0 = CFrame.new(-0.206420898, 3.17407227, 0.284362793, 0, -1, 0, 0, 0, 1, -1, 0, 0) | |
| 1982 | Weld185.Part0 = Part85 | |
| 1983 | Weld185.Part1 = Part183 | |
| 1984 | Part186.Parent = Model0 | |
| 1985 | Part186.Material = Enum.Material.Neon | |
| 1986 | Part186.BrickColor = BrickColor.new("Bright orange")
| |
| 1987 | Part186.Position = Vector3.new(-593.293701, 1509.04846, -449.277069) | |
| 1988 | Part186.Rotation = Vector3.new(-90, -75, 90) | |
| 1989 | Part186.CanCollide = false | |
| 1990 | Part186.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 1991 | Part186.CFrame = CFrame.new(-593.293701, 1509.04846, -449.277069, 0, -0.258822024, -0.965925097, 0, -0.965925097, 0.258822024, -1, 0, 0) | |
| 1992 | Part186.TopSurface = Enum.SurfaceType.Smooth | |
| 1993 | Part186.Color = Color3.new(0, 1, 0) | |
| 1994 | Part186.Position = Vector3.new(-593.293701, 1509.04846, -449.277069) | |
| 1995 | Part186.Orientation = Vector3.new(-15, -90, 180) | |
| 1996 | Part186.Color = Color3.new(0, 1, 0) | |
| 1997 | BlockMesh187.Parent = Part186 | |
| 1998 | BlockMesh187.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 1999 | BlockMesh187.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 2000 | Weld188.Name = "Part" | |
| 2001 | Weld188.Parent = Part186 | |
| 2002 | Weld188.C0 = CFrame.new(0.134887695, 3.33203125, 0.284301758, 0, -0.258822024, -0.965925097, 0, -0.965925097, 0.258822024, -1, 0, 0) | |
| 2003 | Weld188.Part0 = Part85 | |
| 2004 | Weld188.Part1 = Part186 | |
| 2005 | Part189.Parent = Model0 | |
| 2006 | Part189.Material = Enum.Material.Neon | |
| 2007 | Part189.BrickColor = BrickColor.new("Bright orange")
| |
| 2008 | Part189.Position = Vector3.new(-593.546509, 1509.04846, -449.277069) | |
| 2009 | Part189.Rotation = Vector3.new(-90, -75, 90) | |
| 2010 | Part189.CanCollide = false | |
| 2011 | Part189.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 2012 | Part189.CFrame = CFrame.new(-593.546509, 1509.04846, -449.277069, 0, -0.258822024, -0.965925097, 0, -0.965925097, 0.258822024, -1, 0, 0) | |
| 2013 | Part189.TopSurface = Enum.SurfaceType.Smooth | |
| 2014 | Part189.Color = Color3.new(0, 1, 0) | |
| 2015 | Part189.Position = Vector3.new(-593.546509, 1509.04846, -449.277069) | |
| 2016 | Part189.Orientation = Vector3.new(-15, -90, 180) | |
| 2017 | Part189.Color = Color3.new(0, 1, 0) | |
| 2018 | BlockMesh190.Parent = Part189 | |
| 2019 | BlockMesh190.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 2020 | BlockMesh190.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 2021 | Weld191.Name = "Part" | |
| 2022 | Weld191.Parent = Part189 | |
| 2023 | Weld191.C0 = CFrame.new(-0.117919922, 3.33203125, 0.284301758, 0, -0.258822024, -0.965925097, 0, -0.965925097, 0.258822024, -1, 0, 0) | |
| 2024 | Weld191.Part0 = Part85 | |
| 2025 | Weld191.Part1 = Part189 | |
| 2026 | Part192.Parent = Model0 | |
| 2027 | Part192.Material = Enum.Material.Neon | |
| 2028 | Part192.BrickColor = BrickColor.new("Bright orange")
| |
| 2029 | Part192.Position = Vector3.new(-593.546509, 1508.73242, -449.277008) | |
| 2030 | Part192.Rotation = Vector3.new(90, -75, -90) | |
| 2031 | Part192.CanCollide = false | |
| 2032 | Part192.Size = Vector3.new(0.215950891, 0.215950891, 0.215950891) | |
| 2033 | Part192.CFrame = CFrame.new(-593.546509, 1508.73242, -449.277008, 0, 0.258818984, -0.965925872, 0, -0.965925872, -0.258818984, -1, 0, 0) | |
| 2034 | Part192.TopSurface = Enum.SurfaceType.Smooth | |
| 2035 | Part192.Color = Color3.new(0, 1, 0) | |
| 2036 | Part192.Position = Vector3.new(-593.546509, 1508.73242, -449.277008) | |
| 2037 | Part192.Orientation = Vector3.new(15, -90, 180) | |
| 2038 | Part192.Color = Color3.new(0, 1, 0) | |
| 2039 | BlockMesh193.Parent = Part192 | |
| 2040 | BlockMesh193.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 2041 | BlockMesh193.Scale = Vector3.new(0.195052579, 0.195052564, 0.80621779) | |
| 2042 | Weld194.Name = "Part" | |
| 2043 | Weld194.Parent = Part192 | |
| 2044 | Weld194.C0 = CFrame.new(-0.117919922, 3.01599121, 0.284362793, 0, 0.258818984, -0.965925872, 0, -0.965925872, -0.258818984, -1, 0, 0) | |
| 2045 | Weld194.Part0 = Part85 | |
| 2046 | Weld194.Part1 = Part192 | |
| 2047 | Part195.Parent = Model0 | |
| 2048 | Part195.Material = Enum.Material.Neon | |
| 2049 | Part195.BrickColor = BrickColor.new("Bright orange")
| |
| 2050 | Part195.Position = Vector3.new(-593.431702, 1508.65894, -449.277069) | |
| 2051 | Part195.Rotation = Vector3.new(0, 90, 0) | |
| 2052 | Part195.CanCollide = false | |
| 2053 | Part195.Size = Vector3.new(0.215950891, 0.215950891, 0.454915285) | |
| 2054 | Part195.CFrame = CFrame.new(-593.431702, 1508.65894, -449.277069, 0, 0, 1, 0, 1, 0, -1, 0, 0) | |
| 2055 | Part195.TopSurface = Enum.SurfaceType.Smooth | |
| 2056 | Part195.Color = Color3.new(0, 1, 0) | |
| 2057 | Part195.Position = Vector3.new(-593.431702, 1508.65894, -449.277069) | |
| 2058 | Part195.Orientation = Vector3.new(0, 90, 0) | |
| 2059 | Part195.Color = Color3.new(0, 1, 0) | |
| 2060 | BlockMesh196.Parent = Part195 | |
| 2061 | BlockMesh196.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 2062 | BlockMesh196.Scale = Vector3.new(0.195052579, 0.195052564, 1) | |
| 2063 | Weld197.Name = "Part" | |
| 2064 | Weld197.Parent = Part195 | |
| 2065 | Weld197.C0 = CFrame.new(-0.00311279297, 2.94250488, 0.284301758, 0, 0, 1, 0, 1, 0, -1, 0, 0) | |
| 2066 | Weld197.Part0 = Part85 | |
| 2067 | Weld197.Part1 = Part195 | |
| 2068 | WedgePart198.Parent = Model0 | |
| 2069 | WedgePart198.BrickColor = BrickColor.new("Really black")
| |
| 2070 | WedgePart198.Position = Vector3.new(-591.976135, 1509.55176, -449.561371) | |
| 2071 | WedgePart198.Rotation = Vector3.new(-180, -90, 0) | |
| 2072 | WedgePart198.CanCollide = false | |
| 2073 | WedgePart198.Size = Vector3.new(0.580966353, 0.580966353, 0.580966473) | |
| 2074 | WedgePart198.CFrame = CFrame.new(-591.976135, 1509.55176, -449.561371, 0, 0, -1, 0, -1, 0, -1, 0, 0) | |
| 2075 | WedgePart198.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2076 | WedgePart198.Position = Vector3.new(-591.976135, 1509.55176, -449.561371) | |
| 2077 | WedgePart198.Orientation = Vector3.new(0, -90, 180) | |
| 2078 | WedgePart198.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2079 | Weld199.Name = "Wedge" | |
| 2080 | Weld199.Parent = WedgePart198 | |
| 2081 | Weld199.C0 = CFrame.new(1.45245361, 3.83532715, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0) | |
| 2082 | Weld199.Part0 = Part85 | |
| 2083 | Weld199.Part1 = WedgePart198 | |
| 2084 | WedgePart200.Parent = Model0 | |
| 2085 | WedgePart200.BrickColor = BrickColor.new("Really black")
| |
| 2086 | WedgePart200.Position = Vector3.new(-594.300171, 1508.68005, -449.561371) | |
| 2087 | WedgePart200.Rotation = Vector3.new(180, 90, 0) | |
| 2088 | WedgePart200.CanCollide = false | |
| 2089 | WedgePart200.Size = Vector3.new(0.580966353, 1.16193271, 0.580966473) | |
| 2090 | WedgePart200.CFrame = CFrame.new(-594.300171, 1508.68005, -449.561371, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 2091 | WedgePart200.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2092 | WedgePart200.Position = Vector3.new(-594.300171, 1508.68005, -449.561371) | |
| 2093 | WedgePart200.Orientation = Vector3.new(0, 90, 180) | |
| 2094 | WedgePart200.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2095 | Weld201.Name = "Wedge" | |
| 2096 | Weld201.Parent = WedgePart200 | |
| 2097 | Weld201.C0 = CFrame.new(-0.871582031, 2.96362305, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 2098 | Weld201.Part0 = Part85 | |
| 2099 | Weld201.Part1 = WedgePart200 | |
| 2100 | WedgePart202.Parent = Model0 | |
| 2101 | WedgePart202.BrickColor = BrickColor.new("Really black")
| |
| 2102 | WedgePart202.Position = Vector3.new(-594.590332, 1510.71313, -449.561371) | |
| 2103 | WedgePart202.Rotation = Vector3.new(0, -90, 0) | |
| 2104 | WedgePart202.CanCollide = false | |
| 2105 | WedgePart202.Size = Vector3.new(0.580966353, 0.580966353, 1.16193295) | |
| 2106 | WedgePart202.CFrame = CFrame.new(-594.590332, 1510.71313, -449.561371, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 2107 | WedgePart202.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2108 | WedgePart202.Position = Vector3.new(-594.590332, 1510.71313, -449.561371) | |
| 2109 | WedgePart202.Orientation = Vector3.new(0, -90, 0) | |
| 2110 | WedgePart202.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2111 | Weld203.Name = "Wedge" | |
| 2112 | Weld203.Parent = WedgePart202 | |
| 2113 | Weld203.C0 = CFrame.new(-1.16174316, 4.9967041, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 2114 | Weld203.Part0 = Part85 | |
| 2115 | Weld203.Part1 = WedgePart202 | |
| 2116 | WedgePart204.Parent = Model0 | |
| 2117 | WedgePart204.BrickColor = BrickColor.new("Really black")
| |
| 2118 | WedgePart204.Position = Vector3.new(-592.266724, 1510.71313, -449.561371) | |
| 2119 | WedgePart204.Rotation = Vector3.new(0, 90, 0) | |
| 2120 | WedgePart204.CanCollide = false | |
| 2121 | WedgePart204.Size = Vector3.new(0.580966353, 0.580966353, 1.16193295) | |
| 2122 | WedgePart204.CFrame = CFrame.new(-592.266724, 1510.71313, -449.561371, 0, 0, 1, 0, 1, 0, -1, 0, 0) | |
| 2123 | WedgePart204.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2124 | WedgePart204.Position = Vector3.new(-592.266724, 1510.71313, -449.561371) | |
| 2125 | WedgePart204.Orientation = Vector3.new(0, 90, 0) | |
| 2126 | WedgePart204.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2127 | Weld205.Name = "Wedge" | |
| 2128 | Weld205.Parent = WedgePart204 | |
| 2129 | Weld205.C0 = CFrame.new(1.16186523, 4.9967041, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0) | |
| 2130 | Weld205.Part0 = Part85 | |
| 2131 | Weld205.Part1 = WedgePart204 | |
| 2132 | WedgePart206.Parent = Model0 | |
| 2133 | WedgePart206.BrickColor = BrickColor.new("Really black")
| |
| 2134 | WedgePart206.Position = Vector3.new(-592.557312, 1508.68005, -449.561371) | |
| 2135 | WedgePart206.Rotation = Vector3.new(-180, -90, 0) | |
| 2136 | WedgePart206.CanCollide = false | |
| 2137 | WedgePart206.Size = Vector3.new(0.580966353, 1.16193271, 0.580966473) | |
| 2138 | WedgePart206.CFrame = CFrame.new(-592.557312, 1508.68005, -449.561371, 0, 0, -1, 0, -1, 0, -1, 0, 0) | |
| 2139 | WedgePart206.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2140 | WedgePart206.Position = Vector3.new(-592.557312, 1508.68005, -449.561371) | |
| 2141 | WedgePart206.Orientation = Vector3.new(0, -90, 180) | |
| 2142 | WedgePart206.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2143 | Weld207.Name = "Wedge" | |
| 2144 | Weld207.Parent = WedgePart206 | |
| 2145 | Weld207.C0 = CFrame.new(0.871276855, 2.96362305, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0) | |
| 2146 | Weld207.Part0 = Part85 | |
| 2147 | Weld207.Part1 = WedgePart206 | |
| 2148 | WedgePart208.Parent = Model0 | |
| 2149 | WedgePart208.BrickColor = BrickColor.new("Really black")
| |
| 2150 | WedgePart208.Position = Vector3.new(-593.719055, 1510.13269, -449.561371) | |
| 2151 | WedgePart208.Rotation = Vector3.new(0, -90, 0) | |
| 2152 | WedgePart208.CanCollide = false | |
| 2153 | WedgePart208.Size = Vector3.new(0.580966353, 0.580966353, 0.580966473) | |
| 2154 | WedgePart208.CFrame = CFrame.new(-593.719055, 1510.13269, -449.561371, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 2155 | WedgePart208.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2156 | WedgePart208.Position = Vector3.new(-593.719055, 1510.13269, -449.561371) | |
| 2157 | WedgePart208.Orientation = Vector3.new(0, -90, 0) | |
| 2158 | WedgePart208.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2159 | Weld209.Name = "Wedge" | |
| 2160 | Weld209.Parent = WedgePart208 | |
| 2161 | Weld209.C0 = CFrame.new(-0.290466309, 4.41625977, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 2162 | Weld209.Part0 = Part85 | |
| 2163 | Weld209.Part1 = WedgePart208 | |
| 2164 | WedgePart210.Parent = Model0 | |
| 2165 | WedgePart210.BrickColor = BrickColor.new("Really black")
| |
| 2166 | WedgePart210.Position = Vector3.new(-594.880859, 1509.55127, -449.561371) | |
| 2167 | WedgePart210.Rotation = Vector3.new(180, 90, 0) | |
| 2168 | WedgePart210.CanCollide = false | |
| 2169 | WedgePart210.Size = Vector3.new(0.580966353, 0.580966353, 0.580966473) | |
| 2170 | WedgePart210.CFrame = CFrame.new(-594.880859, 1509.55127, -449.561371, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 2171 | WedgePart210.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2172 | WedgePart210.Position = Vector3.new(-594.880859, 1509.55127, -449.561371) | |
| 2173 | WedgePart210.Orientation = Vector3.new(0, 90, 180) | |
| 2174 | WedgePart210.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2175 | Weld211.Name = "Wedge" | |
| 2176 | Weld211.Parent = WedgePart210 | |
| 2177 | Weld211.C0 = CFrame.new(-1.45227051, 3.83483887, 0, 0, 0, 1, 0, -1, 0, 1, 0, 0) | |
| 2178 | Weld211.Part0 = Part85 | |
| 2179 | Weld211.Part1 = WedgePart210 | |
| 2180 | WedgePart212.Parent = Model0 | |
| 2181 | WedgePart212.BrickColor = BrickColor.new("Really black")
| |
| 2182 | WedgePart212.Position = Vector3.new(-593.138245, 1510.13281, -449.561371) | |
| 2183 | WedgePart212.Rotation = Vector3.new(0, 90, 0) | |
| 2184 | WedgePart212.CanCollide = false | |
| 2185 | WedgePart212.Size = Vector3.new(0.580966353, 0.580966353, 0.580966473) | |
| 2186 | WedgePart212.CFrame = CFrame.new(-593.138245, 1510.13281, -449.561371, 0, 0, 1, 0, 1, 0, -1, 0, 0) | |
| 2187 | WedgePart212.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2188 | WedgePart212.Position = Vector3.new(-593.138245, 1510.13281, -449.561371) | |
| 2189 | WedgePart212.Orientation = Vector3.new(0, 90, 0) | |
| 2190 | WedgePart212.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2191 | Weld213.Name = "Wedge" | |
| 2192 | Weld213.Parent = WedgePart212 | |
| 2193 | Weld213.C0 = CFrame.new(0.290344238, 4.41638184, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0) | |
| 2194 | Weld213.Part0 = Part85 | |
| 2195 | Weld213.Part1 = WedgePart212 | |
| 2196 | WedgePart214.Parent = Model0 | |
| 2197 | WedgePart214.BrickColor = BrickColor.new("Really black")
| |
| 2198 | WedgePart214.Position = Vector3.new(-592.535583, 1511.22815, -449.561371) | |
| 2199 | WedgePart214.Rotation = Vector3.new(-90, 63.4399986, 90) | |
| 2200 | WedgePart214.CanCollide = false | |
| 2201 | WedgePart214.Size = Vector3.new(0.580966353, 1.16193271, 1.27812636) | |
| 2202 | WedgePart214.CFrame = CFrame.new(-592.535583, 1511.22815, -449.561371, 0, -0.447212011, 0.894428015, 0, 0.894428015, 0.447212011, -1, 0, 0) | |
| 2203 | WedgePart214.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2204 | WedgePart214.Position = Vector3.new(-592.535583, 1511.22815, -449.561371) | |
| 2205 | WedgePart214.Orientation = Vector3.new(-26.5599995, 90, 0) | |
| 2206 | WedgePart214.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2207 | Weld215.Name = "Wedge" | |
| 2208 | Weld215.Parent = WedgePart214 | |
| 2209 | Weld215.C0 = CFrame.new(0.893005371, 5.51171875, 0, 0, -0.447212011, 0.894428015, 0, 0.894428015, 0.447212011, -1, 0, 0) | |
| 2210 | Weld215.Part0 = Part85 | |
| 2211 | Weld215.Part1 = WedgePart214 | |
| 2212 | WedgePart216.Parent = Model0 | |
| 2213 | WedgePart216.BrickColor = BrickColor.new("Really black")
| |
| 2214 | WedgePart216.Position = Vector3.new(-594.321167, 1511.22815, -449.561371) | |
| 2215 | WedgePart216.Rotation = Vector3.new(-90, -63.4300003, -90) | |
| 2216 | WedgePart216.CanCollide = false | |
| 2217 | WedgePart216.Size = Vector3.new(0.580966353, 1.16193271, 1.27812636) | |
| 2218 | WedgePart216.CFrame = CFrame.new(-594.321167, 1511.22815, -449.561371, 0, 0.447216004, -0.894425988, 0, 0.894425988, 0.447216004, 1, 0, 0) | |
| 2219 | WedgePart216.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2220 | WedgePart216.Position = Vector3.new(-594.321167, 1511.22815, -449.561371) | |
| 2221 | WedgePart216.Orientation = Vector3.new(-26.5699997, -90, 0) | |
| 2222 | WedgePart216.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2223 | Weld217.Name = "Wedge" | |
| 2224 | Weld217.Parent = WedgePart216 | |
| 2225 | Weld217.C0 = CFrame.new(-0.892578125, 5.51171875, 0, 0, 0.447216004, -0.894425988, 0, 0.894425988, 0.447216004, 1, 0, 0) | |
| 2226 | Weld217.Part0 = Part85 | |
| 2227 | Weld217.Part1 = WedgePart216 | |
| 2228 | Part218.Name = "DmgPart" | |
| 2229 | Part218.Parent = Model0 | |
| 2230 | Part218.BrickColor = BrickColor.new("Really red")
| |
| 2231 | Part218.Transparency = 1 | |
| 2232 | Part218.Position = Vector3.new(-593.378601, 1510.46558, -449.561371) | |
| 2233 | Part218.CanCollide = false | |
| 2234 | Part218.Size = Vector3.new(3.46193147, 3.04489326, 0.580966473) | |
| 2235 | Part218.CFrame = CFrame.new(-593.378601, 1510.46558, -449.561371, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 2236 | Part218.BottomSurface = Enum.SurfaceType.Smooth | |
| 2237 | Part218.TopSurface = Enum.SurfaceType.Smooth | |
| 2238 | Part218.Color = Color3.new(1, 0, 0) | |
| 2239 | Part218.Position = Vector3.new(-593.378601, 1510.46558, -449.561371) | |
| 2240 | Part218.Color = Color3.new(1, 0, 0) | |
| 2241 | Weld219.Name = "DmgPart" | |
| 2242 | Weld219.Parent = Part218 | |
| 2243 | Weld219.C0 = CFrame.new(0.049987793, 4.74914551, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 2244 | Weld219.Part0 = Part85 | |
| 2245 | Weld219.Part1 = Part218 | |
| 2246 | Model0.Parent = char | |
| 2247 | local pd = Part218 | |
| 2248 | local handle = Part85 | |
| 2249 | local hcoo = CFrame.Angles(rd(0),rd(-90),rd(90))*CFrame.new(-1.5,0,0) | |
| 2250 | local w1 = Instance.new("Weld", handle)
| |
| 2251 | w1.Part0 = rarm | |
| 2252 | w1.Part1 = handle | |
| 2253 | w1.C0 = hcoo | |
| 2254 | RS=tors:FindFirstChild("Right Shoulder")
| |
| 2255 | LS=tors:FindFirstChild("Left Shoulder")
| |
| 2256 | RH=tors:FindFirstChild("Right Hip")
| |
| 2257 | LH=tors:FindFirstChild("Left Hip")
| |
| 2258 | RJ=hrp:FindFirstChild("RootJoint")
| |
| 2259 | N=tors:FindFirstChild("Neck")
| |
| 2260 | RSC0=CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 2261 | LSC0=CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 2262 | RHC0=CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 2263 | LHC0=CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 2264 | NC0=CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 2265 | RJC0=CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 2266 | HC0=hcoo | |
| 2267 | function lerpz(joint,prop,cfrmz,alp) | |
| 2268 | joint[prop]=joint[prop]:lerp(cfrmz,alp) | |
| 2269 | end | |
| 2270 | function TweenMe(joint,prop,cfrmz,alp,es,ed) | |
| 2271 | local ti = TweenInfo.new(alp,Enum.EasingStyle[es],Enum.EasingDirection[ed],0,false,0) | |
| 2272 | local pp = {[prop] = cfrmz}
| |
| 2273 | local tween = ts:Create(joint,ti,pp) | |
| 2274 | tween:Play() | |
| 2275 | end | |
| 2276 | local dmgTable = {}
| |
| 2277 | function clear() | |
| 2278 | dmgTable = {};
| |
| 2279 | end | |
| 2280 | function dmg(prt,magg,d,mode) | |
| 2281 | local noDelay = coroutine.wrap(function() | |
| 2282 | local players = game.Workspace:GetChildren() | |
| 2283 | for i = 1,#players do | |
| 2284 | local plyer = players[i] | |
| 2285 | if plyer:FindFirstChild("Torso") ~= nil then
| |
| 2286 | local mag = (plyer.Torso.Position-prt.Position).magnitude | |
| 2287 | if mag <= magg and plyer:FindFirstChild("Humanoid") ~= nil and dmgTable[plyer] == nil and plyer ~= char then
| |
| 2288 | dmgTable[plyer] = true | |
| 2289 | plyer:FindFirstChild("Humanoid"):TakeDamage(d)
| |
| 2290 | function cv() | |
| 2291 | local c = Instance.new("BodyVelocity")
| |
| 2292 | c.Parent = plyer:FindFirstChild("Torso")
| |
| 2293 | return c | |
| 2294 | end | |
| 2295 | if mode == 'stall' then | |
| 2296 | local b = cv() | |
| 2297 | b.MaxForce = Vector3.new(math.huge,math.huge,math.huge) | |
| 2298 | b.Velocity = hrp.CFrame.lookVector*20 | |
| 2299 | game.Debris:AddItem(b,0.4) | |
| 2300 | elseif mode == 'fling' then | |
| 2301 | plyer:FindFirstChild("Humanoid").PlatformStand = true
| |
| 2302 | local b = cv() | |
| 2303 | b.MaxForce = Vector3.new(math.huge,math.huge,math.huge) | |
| 2304 | b.Velocity = Vector3.new(0,40,0) | |
| 2305 | game.Debris:AddItem(b,0.1) | |
| 2306 | wait(1) | |
| 2307 | plyer:FindFirstChild("Humanoid").PlatformStand = false
| |
| 2308 | elseif mode == nil then | |
| 2309 | --oi | |
| 2310 | end | |
| 2311 | end | |
| 2312 | end | |
| 2313 | end | |
| 2314 | end) | |
| 2315 | noDelay() | |
| 2316 | end | |
| 2317 | ||
| 2318 | local walk = false | |
| 2319 | local idle = false | |
| 2320 | local jump = false | |
| 2321 | local jumpCheck = false | |
| 2322 | local fall = false | |
| 2323 | local AnimDisable = false | |
| 2324 | game:GetService("RunService").RenderStepped:connect(function()
| |
| 2325 | sine=sine+change | |
| 2326 | if AnimDisable == false then | |
| 2327 | if jumpCheck == true then | |
| 2328 | idle = false | |
| 2329 | walk = false | |
| 2330 | fall = false | |
| 2331 | jump = true | |
| 2332 | elseif human.MoveDirection ~= Vector3.new(0,0,0) then | |
| 2333 | fall = false | |
| 2334 | walk = true | |
| 2335 | jump = false | |
| 2336 | idle = false | |
| 2337 | elseif human.MoveDirection == Vector3.new(0,0,0) then | |
| 2338 | walk = false | |
| 2339 | fall = false | |
| 2340 | jump = false | |
| 2341 | idle = true | |
| 2342 | end | |
| 2343 | else | |
| 2344 | walk = false | |
| 2345 | fall = false | |
| 2346 | jump = false | |
| 2347 | idle = false | |
| 2348 | end | |
| 2349 | end) | |
| 2350 | human.StateChanged:connect(function(state) | |
| 2351 | if state == Enum.HumanoidStateType.Jumping then | |
| 2352 | jumpCheck = true | |
| 2353 | else | |
| 2354 | jumpCheck = false | |
| 2355 | end | |
| 2356 | end) | |
| 2357 | function trail() | |
| 2358 | local colorz = {};
| |
| 2359 | local trail = Instance.new("Trail")
| |
| 2360 | trail.FaceCamera = true | |
| 2361 | trail.TextureMode = Enum.TextureMode.Wrap | |
| 2362 | trail.Color = ColorSequence.new(Color3.new(5/255, 255/255, 5/255),Color3.new(5/255, 255/255, 5/255)) | |
| 2363 | trail.Lifetime = 0.25 | |
| 2364 | trail.Transparency = NumberSequence.new(0.5,1) | |
| 2365 | return trail | |
| 2366 | end | |
| 2367 | local movenum1 = {0,1000/50}
| |
| 2368 | local movenum2 = {0,1000/40}
| |
| 2369 | local movenum3 = {0,1000/20}
| |
| 2370 | local movenum4 = {0,1000/10}
| |
| 2371 | local max = 1000 | |
| 2372 | local disable = false | |
| 2373 | local regenMove = coroutine.wrap(function(timer) | |
| 2374 | while true do | |
| 2375 | if movenum1[1] < max then | |
| 2376 | movenum1[1] = movenum1[1]+movenum1[2] | |
| 2377 | end | |
| 2378 | if movenum2[1] < max then | |
| 2379 | movenum2[1] = movenum2[1]+movenum2[2] | |
| 2380 | end | |
| 2381 | if movenum3[1] < max then | |
| 2382 | movenum3[1] = movenum3[1]+movenum3[2] | |
| 2383 | end | |
| 2384 | if movenum4[1] < max then | |
| 2385 | movenum4[1] = movenum4[1]+movenum4[2] | |
| 2386 | end | |
| 2387 | wait(timer) | |
| 2388 | end | |
| 2389 | end) | |
| 2390 | regenMove(1) | |
| 2391 | local BarChanger = coroutine.wrap(function() | |
| 2392 | while true do | |
| 2393 | Bar1:TweenSize(UDim2.new(0,(movenum1[1]/max*MainFrame.Size.X.Offset),1,0),"Out","Quad",0.5,true) | |
| 2394 | Bar2:TweenSize(UDim2.new(0,(movenum2[1]/max*MainFrame.Size.X.Offset),1,0),"Out","Quad",0.5,true) | |
| 2395 | Bar3:TweenSize(UDim2.new(0,(movenum3[1]/max*MainFrame.Size.X.Offset),1,0),"Out","Quad",0.5,true) | |
| 2396 | Bar4:TweenSize(UDim2.new(0,(movenum4[1]/max*MainFrame.Size.X.Offset),1,0),"Out","Quad",0.5,true) | |
| 2397 | wait(0.25) | |
| 2398 | end | |
| 2399 | end) | |
| 2400 | BarChanger() | |
| 2401 | --[[ | |
| 2402 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2403 | lerpz(RS,'C0',RSC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2404 | lerpz(LS,'C0',LSC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2405 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2406 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2407 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2408 | lerpz(w1,'C0',HC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2409 | --]] | |
| 2410 | local playanims = coroutine.wrap(function() | |
| 2411 | while game:GetService("RunService").RenderStepped:Wait() do
| |
| 2412 | if idle == true then | |
| 2413 | local ispeed = 20 | |
| 2414 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(5)*math.cos(sine/ispeed),rd(0),rd(15)),0.1) | |
| 2415 | lerpz(RS,'C0',RSC0*cf(0.4,0,0)*ang(rd(0),rd(-80),rd(90)+rd(5)*math.cos(sine/ispeed)),0.1) | |
| 2416 | lerpz(LS,'C0',LSC0*cf(0,0,0)*ang(rd(-10)+rd(-5)*math.cos(sine/ispeed),rd(0),rd(0)),0.1) | |
| 2417 | lerpz(RH,'C0',RHC0*cf(0,0.15*math.cos(sine/ispeed),0)*ang(rd(0),rd(-5),rd(-15)),0.1) | |
| 2418 | lerpz(LH,'C0',LHC0*cf(0,0.15*math.cos(sine/ispeed),0)*ang(rd(0),rd(15),rd(0)),0.1) | |
| 2419 | lerpz(RJ,'C0',RJC0*cf(0,0,-0.15*math.cos(sine/ispeed))*ang(rd(0),rd(0),rd(-15)),0.1) | |
| 2420 | lerpz(w1,'C0',HC0*cf(-0.07*math.cos(sine/ispeed),-0.35+-0.05*math.cos(sine/ispeed),0)*ang(rd(0),rd(0),rd(10)+rd(7)*math.cos(sine/ispeed)),0.1) | |
| 2421 | elseif walk == true then | |
| 2422 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(-10),chr.HumanoidRootPart.RotVelocity.Y/50,chr.HumanoidRootPart.RotVelocity.Y/30),0.4) | |
| 2423 | lerpz(RS,'C0',RSC0*cf(0,0,0)*ang(rd(0),rd(-15),rd(90)),0.15) | |
| 2424 | lerpz(LS,'C0',LSC0*cf(0,0,0)*ang(rd(3)*math.cos(sine/3),rd(0),rd(40)*math.cos(sine/6)),0.4) | |
| 2425 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(30)*math.cos(sine/6)),0.4) | |
| 2426 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(30)*math.cos(sine/6)),0.4) | |
| 2427 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(10),chr.HumanoidRootPart.RotVelocity.Y/50,rd(0)),0.4) | |
| 2428 | lerpz(w1,'C0',HC0*cf(0.75,0.5,0)*ang(rd(10),rd(0),rd(-60)),0.2) | |
| 2429 | elseif jump == true then | |
| 2430 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(-10),rd(0),rd(0)),0.4) | |
| 2431 | lerpz(RS,'C0',RSC0*cf(0,0,0)*ang(rd(0),rd(-15),rd(90)),0.15) | |
| 2432 | lerpz(LS,'C0',LSC0*cf(0,0,0)*ang(rd(-20),rd(0),rd(0)),0.4) | |
| 2433 | lerpz(RH,'C0',RHC0*cf(0.2,0.3,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2434 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2435 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2436 | lerpz(w1,'C0',HC0*cf(0.75,0.5,0)*ang(rd(15),rd(0),rd(-60)),0.2) | |
| 2437 | end | |
| 2438 | end | |
| 2439 | end) | |
| 2440 | playanims() | |
| 2441 | ||
| 2442 | local movenum = 1 | |
| 2443 | mouse.Button1Down:connect(function() | |
| 2444 | if debunk == false then | |
| 2445 | debunk = true | |
| 2446 | AnimDisable = true | |
| 2447 | if movenum == 1 then | |
| 2448 | clear() | |
| 2449 | for i = 1,13 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2450 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(85)),0.4) | |
| 2451 | lerpz(RS,'C0',RSC0*cf(0,-0.5,0)*ang(rd(-90),rd(0),rd(0)),0.4) | |
| 2452 | lerpz(LS,'C0',LSC0*cf(0,0,0)*ang(rd(-10),rd(0),rd(0)),0.4) | |
| 2453 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2454 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.4) | |
| 2455 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(-90)),0.4) | |
| 2456 | lerpz(w1,'C0',HC0*cf(-2,0,0)*ang(rd(0),rd(0),rd(90)),0.4) | |
| 2457 | end | |
| 2458 | local t = trail() | |
| 2459 | local at = Instance.new("Attachment",pd)
| |
| 2460 | at.Name = "att2" | |
| 2461 | at.Position = Vector3.new(-1.2, 1.5, 0) | |
| 2462 | local at2 = Instance.new("Attachment",pd)
| |
| 2463 | at.Position = Vector3.new(-1.2, -1.5, 0) | |
| 2464 | t.Parent = pd | |
| 2465 | t.Attachment0 = at | |
| 2466 | t.Attachment1 = at2 | |
| 2467 | for i = 1,30 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2468 | dmg(pd,4,10,'stall') | |
| 2469 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(-90)),0.3) | |
| 2470 | lerpz(RS,'C0',RSC0*cf(0,-0.5,0)*ang(rd(-90),rd(0),rd(0)),0.3) | |
| 2471 | lerpz(LS,'C0',LSC0*cf(0,0,0)*ang(rd(-25),rd(0),rd(0)),0.3) | |
| 2472 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2473 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2474 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(90)),0.3) | |
| 2475 | lerpz(w1,'C0',HC0*cf(-2,0,0)*ang(rd(0),rd(0),rd(90)),0.3) | |
| 2476 | end | |
| 2477 | at:Remove() | |
| 2478 | at2:Remove() | |
| 2479 | t:Remove() | |
| 2480 | elseif movenum == 2 then | |
| 2481 | clear() | |
| 2482 | for i = 1,13 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2483 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(20),rd(0),rd(0)),0.4) | |
| 2484 | lerpz(RS,'C0',RSC0*cf(-0.1,0.25,-0.7)*ang(rd(-20),rd(0),rd(175)),0.4) | |
| 2485 | lerpz(LS,'C0',LSC0*cf(0,0.25,-0.7)*ang(rd(-20),rd(0),rd(-175)),0.4) | |
| 2486 | lerpz(RH,'C0',RHC0*cf(0.2,0.3,0)*ang(rd(0),rd(0),rd(-20)),0.4) | |
| 2487 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(20)),0.4) | |
| 2488 | lerpz(RJ,'C0',RJC0*cf(0,0.2,0)*ang(rd(-20),rd(0),rd(0)),0.4) | |
| 2489 | lerpz(w1,'C0',HC0*cf(-2,0,-0.6)*ang(rd(0),rd(-20),rd(90)),0.4) | |
| 2490 | end | |
| 2491 | local t = trail() | |
| 2492 | local at = Instance.new("Attachment",pd)
| |
| 2493 | at.Name = "att2" | |
| 2494 | at.Position = Vector3.new(-1.2, 1.5, 0) | |
| 2495 | local at2 = Instance.new("Attachment",pd)
| |
| 2496 | at.Position = Vector3.new(-1.2, -1.5, 0) | |
| 2497 | t.Parent = pd | |
| 2498 | t.Attachment0 = at | |
| 2499 | t.Attachment1 = at2 | |
| 2500 | for i = 1,15 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2501 | dmg(pd,5,15,'fling') | |
| 2502 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(-10),rd(0),rd(0)),0.3) | |
| 2503 | lerpz(RS,'C0',RSC0*cf(-0.1,0.25,-0.7)*ang(rd(20),rd(0),rd(90)),0.3) | |
| 2504 | lerpz(LS,'C0',LSC0*cf(0,0.25,-0.7)*ang(rd(20),rd(0),rd(-90)),0.3) | |
| 2505 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2506 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(30)),0.3) | |
| 2507 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(20),rd(0),rd(0)),0.3) | |
| 2508 | lerpz(w1,'C0',HC0*cf(-2,-0.2,0.5)*ang(rd(20),rd(0),rd(90)),0.4) | |
| 2509 | end | |
| 2510 | at:Remove() | |
| 2511 | at2:Remove() | |
| 2512 | t:Remove() | |
| 2513 | local effect = Instance.new("Part",workspace)
| |
| 2514 | effect.CanCollide = false | |
| 2515 | effect.Anchored = true | |
| 2516 | effect.Name = "ExplsionEffect" | |
| 2517 | effect.Size = Vector3.new(1,1,1) | |
| 2518 | effect.Color = Color3.new(0/255, 255/255, 8/255) | |
| 2519 | effect.CFrame = CFrame.new(pd.CFrame.p) | |
| 2520 | local me = Instance.new("SpecialMesh",effect)
| |
| 2521 | me.Scale = Vector3.new(0.01,0.01,0.01) | |
| 2522 | me.MeshId = "http://www.roblox.com/asset/?id=20329976" | |
| 2523 | game.Debris:AddItem(effect,2) | |
| 2524 | TweenMe(me,'Scale',Vector3.new(9,9,9),0.5,'Sine','Out') | |
| 2525 | TweenMe(effect,'Transparency',1,0.5,'Linear','Out') | |
| 2526 | elseif movenum == 3 then | |
| 2527 | clear() | |
| 2528 | local spinnum = 15 | |
| 2529 | local t = trail() | |
| 2530 | local at = Instance.new("Attachment",pd)
| |
| 2531 | at.Name = "att2" | |
| 2532 | at.Position = Vector3.new(-1.2, 1.5, 0) | |
| 2533 | local at2 = Instance.new("Attachment",pd)
| |
| 2534 | at.Position = Vector3.new(-1.2, -1.5, 0) | |
| 2535 | t.Parent = pd | |
| 2536 | t.Attachment0 = at | |
| 2537 | t.Attachment1 = at2 | |
| 2538 | for i = 1,410/spinnum do game:GetService("RunService").RenderStepped:Wait()
| |
| 2539 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2540 | lerpz(RS,'C0',RSC0*cf(-0.1,0.25,-0.7)*ang(rd(20),rd(0),rd(90)),0.3) | |
| 2541 | lerpz(LS,'C0',LSC0*cf(0,0.25,-0.7)*ang(rd(20),rd(0),rd(-90)),0.3) | |
| 2542 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2543 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2544 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(i*spinnum)),0.3) | |
| 2545 | lerpz(w1,'C0',HC0*cf(-2,-0.2,0.5)*ang(rd(20),rd(0),rd(90)),0.4) | |
| 2546 | end | |
| 2547 | for i = 1,20 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2548 | dmg(pd,6,20,'stall') | |
| 2549 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2550 | lerpz(RS,'C0',RSC0*cf(-0.1,0.25,-0.7)*ang(rd(20),rd(0),rd(90)),0.3) | |
| 2551 | lerpz(LS,'C0',LSC0*cf(0,0.25,-0.7)*ang(rd(20),rd(0),rd(-90)),0.3) | |
| 2552 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2553 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2554 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(30)),0.2) | |
| 2555 | lerpz(w1,'C0',HC0*cf(-2,-0.2,0.5)*ang(rd(20),rd(0),rd(90)),0.4) | |
| 2556 | end | |
| 2557 | at:Remove() | |
| 2558 | at2:Remove() | |
| 2559 | t:Remove() | |
| 2560 | end | |
| 2561 | movenum = movenum+1 | |
| 2562 | if movenum > 3 then | |
| 2563 | movenum = 1 | |
| 2564 | end | |
| 2565 | AnimDisable = false | |
| 2566 | debunk = false | |
| 2567 | end | |
| 2568 | end) | |
| 2569 | --------------------------------------------------------- | |
| 2570 | mouse.KeyDown:connect(function(key) | |
| 2571 | key = key:lower() | |
| 2572 | if debunk2 == false then | |
| 2573 | debunk2 = true | |
| 2574 | AnimDisable = true | |
| 2575 | if key == "z" and movenum4[1]>=max then | |
| 2576 | debunk = true | |
| 2577 | movenum4[1] = 0 | |
| 2578 | wait(4) | |
| 2579 | debunk = false | |
| 2580 | elseif key == "x" and movenum3[1]>=max then | |
| 2581 | debunk = true | |
| 2582 | movenum3[1] = 0 | |
| 2583 | local spinnum = 15 | |
| 2584 | local t = trail() | |
| 2585 | local at = Instance.new("Attachment",pd)
| |
| 2586 | at.Name = "att2" | |
| 2587 | at.Position = Vector3.new(-1.2, 1.5, 0) | |
| 2588 | local at2 = Instance.new("Attachment",pd)
| |
| 2589 | at.Position = Vector3.new(-1.2, -1.5, 0) | |
| 2590 | t.Parent = pd | |
| 2591 | t.Attachment0 = at | |
| 2592 | t.Attachment1 = at2 | |
| 2593 | local moveOn = true | |
| 2594 | local torn = Instance.new("Part",char)
| |
| 2595 | torn.Anchored = true | |
| 2596 | torn.Transparency = 1 | |
| 2597 | torn.BrickColor = BrickColor.new("Bright orange")
| |
| 2598 | torn.CFrame = CFrame.new(hrp.CFrame.p) | |
| 2599 | torn.Size = Vector3.new(1,1,1) | |
| 2600 | torn.CanCollide = false | |
| 2601 | local meshy = Instance.new("SpecialMesh",torn)
| |
| 2602 | meshy.MeshId = "rbxassetid://102638417" | |
| 2603 | meshy.Scale = Vector3.new(15, 15, 15) | |
| 2604 | local foll = coroutine.wrap(function() | |
| 2605 | TweenMe(torn,'Transparency',0.4,3,'Sine','Out') | |
| 2606 | repeat wait() | |
| 2607 | lerpz(torn,'CFrame',cf(hrp.CFrame.p)*ang(rd(0),rd(sine*10),rd(0)),0.3) | |
| 2608 | until moveOn == false | |
| 2609 | end) | |
| 2610 | foll() | |
| 2611 | for i = 1,355 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2612 | spinnum = spinnum+0.05 | |
| 2613 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2614 | lerpz(RS,'C0',RSC0*cf(-0.1,0.25,-0.7)*ang(rd(20),rd(0),rd(90)),0.3) | |
| 2615 | lerpz(LS,'C0',LSC0*cf(0,0.25,-0.7)*ang(rd(20),rd(0),rd(-90)),0.3) | |
| 2616 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2617 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2618 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(i*spinnum)),0.3) | |
| 2619 | lerpz(w1,'C0',HC0*cf(-2,-0.2,0.5)*ang(rd(20),rd(0),rd(90)),0.4) | |
| 2620 | end | |
| 2621 | at:Remove() | |
| 2622 | at2:Remove() | |
| 2623 | t:Remove() | |
| 2624 | local closed = coroutine.wrap(function() | |
| 2625 | TweenMe(torn,'Transparency',1,0.75,'Sine','Out') | |
| 2626 | TweenMe(meshy,'Scale',Vector3.new(25,5,25),0.75,'Linear','Out') | |
| 2627 | wait(0.75) | |
| 2628 | torn:Remove() | |
| 2629 | moveOn = false | |
| 2630 | end) | |
| 2631 | closed() | |
| 2632 | for i = 1,50 do game:GetService("RunService").RenderStepped:Wait()
| |
| 2633 | dmg(pd,6,20,'stall') | |
| 2634 | lerpz(N,'C0',NC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2635 | lerpz(RS,'C0',RSC0*cf(-0.1,0.25,-0.7)*ang(rd(20),rd(0),rd(90)),0.3) | |
| 2636 | lerpz(LS,'C0',LSC0*cf(0,0.25,-0.7)*ang(rd(20),rd(0),rd(-90)),0.3) | |
| 2637 | lerpz(RH,'C0',RHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2638 | lerpz(LH,'C0',LHC0*cf(0,0,0)*ang(rd(0),rd(0),rd(0)),0.3) | |
| 2639 | lerpz(RJ,'C0',RJC0*cf(0,0,0)*ang(rd(0),rd(0),rd(30)),0.2) | |
| 2640 | lerpz(w1,'C0',HC0*cf(-2,-0.2,0.5)*ang(rd(20),rd(0),rd(90)),0.4) | |
| 2641 | end | |
| 2642 | debunk = false | |
| 2643 | elseif key == "c" and movenum2[1]>=max then | |
| 2644 | debunk = true | |
| 2645 | movenum2[1] = 0 | |
| 2646 | debunk = false | |
| 2647 | elseif key == "v" and movenum1[1]>=max then | |
| 2648 | debunk = true | |
| 2649 | movenum1[1] = 0 | |
| 2650 | debunk = false | |
| 2651 | end | |
| 2652 | if debunk == false then | |
| 2653 | AnimDisable = false | |
| 2654 | end | |
| 2655 | debunk2 = false | |
| 2656 | end | |
| 2657 | end) |