Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
- do
- script.Parent = owner.Character
- local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
- local function NewFakeEvent()
- local Bind = Instance.new("BindableEvent")
- local Fake;Fake = {Connections = {},
- fakeEvent=true;
- Connect=function(self,Func)
- Bind.Event:connect(Func)
- self.Connections[Bind] = true
- return setmetatable({Connected = true},{
- __index = function (self,Index)
- if Index:lower() == "disconnect" then
- return function() Fake.Connections[Bind] = false;self.Connected = false end
- end
- return Fake[Index]
- end;
- __tostring = function() return "Connection" end;
- })
- end}
- Fake.connect = Fake.Connect;return Fake;
- end
- local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
- local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
- local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
- self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
- end};ContextActionService.UnBindAction = ContextActionService.BindAction
- local function TriggerEvent(self,Event,...)
- local Trigger = Mouse[Event]
- if Trigger and Trigger.fakeEvent and Trigger.Connections then
- for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
- end
- end
- Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
- Event.OnServerEvent:Connect(function(FiredBy,Input)
- if FiredBy.Name ~= owner.Name then return end
- if Input.MouseEvent then
- Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
- else
- local Begin = Input.UserInputState == Enum.UserInputState.Begin
- if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
- for _,Action in pairs(ContextActionService.Actions) do
- for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
- end
- Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
- UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
- end
- end)
- InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
- Event.Parent = NLS([[
- local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
- local Input = function(Input,gameProcessedEvent)
- if gameProcessedEvent then return end
- Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
- end
- UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
- local Hit,Target
- while wait(1/30) do
- if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
- Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
- end
- end
- ]],owner.Character)
- end
- RealGame = game;game = setmetatable({},{
- __index = function (self,Index)
- local Sandbox = function (Thing)
- if Thing:IsA("Player") then
- local RealPlayer = Thing
- return setmetatable({},{
- __index = function (self,Index)
- local Type = type(RealPlayer[Index])
- if Type == "function" then
- if Index:lower() == "getmouse" or Index:lower() == "mouse" then
- return function (self)return InternalData["Mouse"] end
- end
- return function (self,...)return RealPlayer[Index](RealPlayer,...) end
- end
- return RealPlayer[Index]
- end;
- __tostring = function(self) return RealPlayer.Name end
- })
- end
- end
- if RealGame[Index] then
- local Type = type(RealGame[Index])
- if Type == "function" then
- if Index:lower() == "getservice" or Index:lower() == "service" then
- return function (self,Service)
- local FakeServices = {
- ["players"] = function()
- return setmetatable({},{
- __index = function (self2,Index2)
- local RealService = RealGame:GetService(Service)
- local Type2 = type(Index2)
- if Type2 == "function" then
- return function (self,...) return RealService[Index2](RealService,...)end
- else
- if Index2:lower() == "localplayer" then return Sandbox(owner) end
- return RealService[Index2]
- end
- end;
- __tostring = function(self) return RealGame:GetService(Service).Name end
- })
- end;
- ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
- ["userinputservice"] = function() return InternalData["UserInputService"] end;
- ["runservice"] = function()
- return setmetatable({},{
- __index = function(self2,Index2)
- local RealService = RealGame:GetService(Service)
- local Type2 = type(Index2)
- if Type2 == "function" then
- return function (self,...) return RealService[Index2](RealService,...) end
- else
- local RunServices = {
- ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
- ["renderstepped"] = function() return RealService["Stepped"] end
- }
- if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
- return RealService[Index2]
- end
- end
- })
- end
- }
- if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
- return RealGame:GetService(Service)
- end
- end
- return function (self,...) return RealGame[Index](RealGame,...) end
- else
- if game:GetService(Index) then return game:GetService(Index) end
- return RealGame[Index]
- end
- end
- return nil
- end
- });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
- print(" made by zachrogamehard133447")
- local runDummyScript = function(f,scri)
- local oldenv = getfenv(f)
- local newenv = setmetatable({}, {
- __index = function(_, k)
- if k:lower() == 'script' then
- return scri
- else
- return oldenv[k]
- end
- end
- })
- setfenv(f, newenv)
- ypcall(function() f() end)
- end
- cors = {}
- mas = Instance.new("Model",game:GetService("Lighting"))
- mas.Name = "CompiledModel"
- o1 = Instance.new("Model")
- o2 = Instance.new("Part")
- o7 = Instance.new("SpecialMesh")
- o8 = Instance.new("StringValue")
- o9 = Instance.new("Vector3Value")
- o10 = Instance.new("Vector3Value")
- o11 = Instance.new("Vector3Value")
- o12 = Instance.new("Vector3Value")
- o13 = Instance.new("Vector3Value")
- o14 = Instance.new("Decal")
- o15 = Instance.new("Part")
- o16 = Instance.new("Part")
- o18 = Instance.new("Part")
- o19 = Instance.new("Part")
- o21 = Instance.new("Part")
- o22 = Instance.new("Part")
- o23 = Instance.new("Decal")
- o32 = Instance.new("Humanoid")
- o34 = Instance.new("Part")
- o35 = Instance.new("SpecialMesh")
- o37 = Instance.new("BodyColors")
- o38 = Instance.new("Shirt")
- o39 = Instance.new("Pants")
- o40 = Instance.new("Model")
- o41 = Instance.new("Part")
- o42 = Instance.new("CylinderMesh")
- o43 = Instance.new("Part")
- o44 = Instance.new("CylinderMesh")
- o45 = Instance.new("Part")
- o46 = Instance.new("Part")
- o47 = Instance.new("SpecialMesh")
- o48 = Instance.new("Part")
- o49 = Instance.new("Weld")
- o50 = Instance.new("Weld")
- o51 = Instance.new("Weld")
- o52 = Instance.new("Weld")
- o53 = Instance.new("Weld")
- o54 = Instance.new("Weld")
- o55 = Instance.new("Weld")
- o56 = Instance.new("Weld")
- o57 = Instance.new("Weld")
- o58 = Instance.new("Weld")
- o59 = Instance.new("Weld")
- o60 = Instance.new("Weld")
- o61 = Instance.new("Weld")
- o62 = Instance.new("Weld")
- o63 = Instance.new("Weld")
- o64 = Instance.new("Weld")
- o65 = Instance.new("Weld")
- o66 = Instance.new("Weld")
- o67 = Instance.new("Weld")
- o68 = Instance.new("Weld")
- o69 = Instance.new("Weld")
- o70 = Instance.new("Weld")
- o71 = Instance.new("Weld")
- o72 = Instance.new("Weld")
- o73 = Instance.new("Weld")
- o74 = Instance.new("Weld")
- o75 = Instance.new("Weld")
- o76 = Instance.new("Weld")
- o77 = Instance.new("Weld")
- o78 = Instance.new("Weld")
- o79 = Instance.new("Weld")
- o80 = Instance.new("Weld")
- o81 = Instance.new("Weld")
- o82 = Instance.new("Weld")
- o83 = Instance.new("Weld")
- o84 = Instance.new("Weld")
- o85 = Instance.new("Weld")
- o86 = Instance.new("Weld")
- o87 = Instance.new("Part")
- o88 = Instance.new("Part")
- o89 = Instance.new("SpecialMesh")
- o90 = Instance.new("Part")
- o91 = Instance.new("Part")
- o92 = Instance.new("Part")
- o93 = Instance.new("Part")
- o94 = Instance.new("Part")
- o95 = Instance.new("Part")
- o96 = Instance.new("SpecialMesh")
- o97 = Instance.new("Part")
- o98 = Instance.new("SpecialMesh")
- o99 = Instance.new("Part")
- o100 = Instance.new("Part")
- o101 = Instance.new("Part")
- o102 = Instance.new("SpecialMesh")
- o103 = Instance.new("Part")
- o104 = Instance.new("Part")
- o105 = Instance.new("Part")
- o106 = Instance.new("SpecialMesh")
- o107 = Instance.new("Part")
- o108 = Instance.new("Part")
- o109 = Instance.new("Part")
- o110 = Instance.new("SpecialMesh")
- o111 = Instance.new("Part")
- o112 = Instance.new("Part")
- o113 = Instance.new("Part")
- o114 = Instance.new("SpecialMesh")
- o115 = Instance.new("Part")
- o116 = Instance.new("CylinderMesh")
- o117 = Instance.new("Part")
- o118 = Instance.new("Part")
- o119 = Instance.new("SpecialMesh")
- o120 = Instance.new("Part")
- o121 = Instance.new("Part")
- o122 = Instance.new("Part")
- o123 = Instance.new("SpecialMesh")
- o124 = Instance.new("Part")
- o125 = Instance.new("Part")
- o126 = Instance.new("SpecialMesh")
- o127 = Instance.new("Part")
- o128 = Instance.new("Part")
- o129 = Instance.new("Part")
- o130 = Instance.new("Part")
- o131 = Instance.new("SpecialMesh")
- o132 = Instance.new("Model")
- o133 = Instance.new("Part")
- o134 = Instance.new("Weld")
- o135 = Instance.new("Part")
- o136 = Instance.new("Part")
- o137 = Instance.new("Part")
- o138 = Instance.new("Part")
- o139 = Instance.new("Part")
- o140 = Instance.new("Part")
- o141 = Instance.new("Part")
- o142 = Instance.new("Sound")
- o143 = Instance.new("Model")
- o144 = Instance.new("Part")
- o145 = Instance.new("SpecialMesh")
- o150 = Instance.new("Decal")
- o151 = Instance.new("Part")
- o152 = Instance.new("Motor6D")
- o153 = Instance.new("Part")
- o155 = Instance.new("Part")
- o156 = Instance.new("Part")
- o158 = Instance.new("Part")
- o159 = Instance.new("Part")
- o160 = Instance.new("Decal")
- o161 = Instance.new("Motor6D")
- o162 = Instance.new("Motor6D")
- o171 = Instance.new("Humanoid")
- o172 = Instance.new("BodyColors")
- o173 = Instance.new("Shirt")
- o174 = Instance.new("ShirtGraphic")
- o175 = Instance.new("Pants")
- o1.Name = "Badmylife1234"
- o1.Parent = mas
- o1.PrimaryPart = o15
- o2.Name = "Head"
- o2.Parent = o1
- o2.BrickColor = BrickColor.new("Light orange")
- o2.Position = Vector3.new(33.178875, 25.0019341, -167.025085)
- o2.Rotation = Vector3.new(-116.129997, -1.5, -176.949997)
- o2.Anchored = true
- o2.FormFactor = Enum.FormFactor.Symmetric
- o2.Size = Vector3.new(2, 1, 1)
- o2.CFrame = CFrame.new(33.178875, 25.0019341, -167.025085, -0.998246908, 0.0531217307, -0.0261017326, 0, 0.440997064, 0.897508621, 0.0591879934, 0.895935118, -0.440223962)
- o2.TopSurface = Enum.SurfaceType.Smooth
- o2.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o2.Position = Vector3.new(33.178875, 25.0019341, -167.025085)
- o7.Parent = o2
- o7.MeshId = "http://www.roblox.com/asset/?id=83001675"
- o7.Scale = Vector3.new(1.25, 1.25, 1.25)
- o7.MeshType = Enum.MeshType.FileMesh
- o8.Name = "AvatarPartScaleType"
- o8.Parent = o7
- o8.Value = "Classic"
- o9.Name = "FaceCenterAttachment"
- o9.Parent = o7
- o10.Name = "FaceFrontAttachment"
- o10.Parent = o7
- o10.Value = Vector3.new(0, 0, -0.589999974)
- o11.Name = "HairAttachment"
- o11.Parent = o7
- o11.Value = Vector3.new(0, 0.589999974, -0)
- o12.Name = "HatAttachment"
- o12.Parent = o7
- o12.Value = Vector3.new(0, 0.589999974, -0)
- o13.Name = "NeckRigAttachment"
- o13.Parent = o7
- o13.Value = Vector3.new(0, -0.490999997, -0)
- o14.Name = "face"
- o14.Parent = o2
- o14.Texture = "http://www.roblox.com/asset/?id=18151722"
- o15.Name = "HumanoidRootPart"
- o15.Parent = o1
- o15.Transparency = 1
- o15.Position = Vector3.new(33.0992928, 24.8274307, -168.36734)
- o15.Rotation = Vector3.new(-118.620003, -1.63, -177.020004)
- o15.Anchored = true
- o15.CanCollide = false
- o15.FormFactor = Enum.FormFactor.Symmetric
- o15.Size = Vector3.new(2, 2, 1)
- o15.CFrame = CFrame.new(33.0992928, 24.8274307, -168.36734, -0.998247027, 0.051931195, -0.0283924863, 0, 0.479716301, 0.877423644, 0.0591860004, 0.875885546, -0.478875309)
- o15.BottomSurface = Enum.SurfaceType.Smooth
- o15.TopSurface = Enum.SurfaceType.Smooth
- o15.Position = Vector3.new(33.0992928, 24.8274307, -168.36734)
- o16.Name = "Left Arm"
- o16.Parent = o1
- o16.BrickColor = BrickColor.new("Light orange")
- o16.Position = Vector3.new(34.6706696, 23.7673512, -167.20813)
- o16.Rotation = Vector3.new(137.850006, -2.51999998, 177.720001)
- o16.Anchored = true
- o16.CanCollide = false
- o16.FormFactor = Enum.FormFactor.Symmetric
- o16.Size = Vector3.new(1, 2, 1)
- o16.CFrame = CFrame.new(34.6706696, 23.7673512, -167.20813, -0.998246372, -0.0396898761, -0.0439204015, 0, 0.741936028, -0.670470715, 0.0591970235, -0.669295013, -0.740634859)
- o16.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o16.Position = Vector3.new(34.6706696, 23.7673512, -167.20813)
- o18.Name = "Left Leg"
- o18.Parent = o1
- o18.BrickColor = BrickColor.new("Light orange")
- o18.Position = Vector3.new(33.425808, 24.5798264, -170.142258)
- o18.Rotation = Vector3.new(-89.4800034, -5.51999998, -177.740005)
- o18.Anchored = true
- o18.CanCollide = false
- o18.FormFactor = Enum.FormFactor.Symmetric
- o18.Size = Vector3.new(1, 2, 1)
- o18.CFrame = CFrame.new(33.425808, 24.5798264, -170.142258, -0.994592905, 0.0393111221, -0.0961238295, -0.096401982, -0.00523799146, 0.995328784, 0.0386239961, 0.999213338, 0.0089993393)
- o18.BottomSurface = Enum.SurfaceType.Smooth
- o18.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o18.Position = Vector3.new(33.425808, 24.5798264, -170.142258)
- o19.Name = "Right Arm"
- o19.Parent = o1
- o19.BrickColor = BrickColor.new("Light orange")
- o19.Position = Vector3.new(31.6485958, 23.6254845, -167.491196)
- o19.Rotation = Vector3.new(162.419998, -3.23000002, 178.979996)
- o19.Anchored = true
- o19.CanCollide = false
- o19.FormFactor = Enum.FormFactor.Symmetric
- o19.Size = Vector3.new(1, 2, 1)
- o19.CFrame = CFrame.new(31.6485958, 23.6254845, -167.491196, -0.998247743, -0.0178436916, -0.0564184822, 0, 0.953449905, -0.301551372, 0.0591729842, -0.301022947, -0.951779306)
- o19.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o19.Position = Vector3.new(31.6485958, 23.6254845, -167.491196)
- o21.Name = "Right Leg"
- o21.Parent = o1
- o21.BrickColor = BrickColor.new("Light orange")
- o21.Position = Vector3.new(32.4963074, 23.8679981, -170.089523)
- o21.Rotation = Vector3.new(-118.620003, -1.63, -177.020004)
- o21.Anchored = true
- o21.CanCollide = false
- o21.FormFactor = Enum.FormFactor.Symmetric
- o21.Size = Vector3.new(1, 2, 1)
- o21.CFrame = CFrame.new(32.4963074, 23.8679981, -170.089523, -0.998247027, 0.051931195, -0.0283924863, 0, 0.479716301, 0.877423644, 0.0591860004, 0.875885546, -0.478875309)
- o21.BottomSurface = Enum.SurfaceType.Smooth
- o21.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o21.Position = Vector3.new(32.4963074, 23.8679981, -170.089523)
- o22.Name = "Torso"
- o22.Parent = o1
- o22.BrickColor = BrickColor.new("Light orange")
- o22.Position = Vector3.new(33.0992928, 24.8274307, -168.36734)
- o22.Rotation = Vector3.new(-74.3399963, 0.920000017, -176.729996)
- o22.Anchored = true
- o22.FormFactor = Enum.FormFactor.Symmetric
- o22.Size = Vector3.new(2, 2, 1)
- o22.CFrame = CFrame.new(33.0992928, 24.8274307, -168.36734, -0.998247027, 0.0569820851, 0.0160007626, 0, -0.270347059, 0.962762952, 0.0591860004, 0.961075246, 0.269873142)
- o22.LeftSurface = Enum.SurfaceType.Weld
- o22.RightSurface = Enum.SurfaceType.Weld
- o22.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o22.Position = Vector3.new(33.0992928, 24.8274307, -168.36734)
- o23.Name = "roblox"
- o23.Parent = o22
- o32.Parent = o1
- o32.RightLeg = o21
- o32.LeftLeg = o18
- o32.Torso = o15
- o34.Name = "Handle"
- o34.Parent = mas
- o34.Position = Vector3.new(33.6947174, 25.3852539, -168.586777)
- o34.Rotation = Vector3.new(80.7900009, -22.6399994, -49.5200005)
- o34.Anchored = true
- o34.CanCollide = false
- o34.Locked = true
- o34.Size = Vector3.new(4, 7, 1)
- o34.CFrame = CFrame.new(33.6947174, 25.3852539, -168.586777, 0.599217117, 0.701992333, -0.384897023, -0.368447095, -0.185018152, -0.911051631, -0.71076417, 0.687731922, 0.14778097)
- o34.BottomSurface = Enum.SurfaceType.Smooth
- o34.TopSurface = Enum.SurfaceType.Smooth
- o34.Position = Vector3.new(33.6947174, 25.3852539, -168.586777)
- o35.Name = "SpecialMesh"
- o35.Parent = o34
- o35.MeshId = "rbxassetid://4492398401"
- o35.TextureId = "rbxassetid://4492398428"
- o35.MeshType = Enum.MeshType.FileMesh
- o37.Parent = o1
- o37.HeadColor = BrickColor.new("Light orange")
- o37.LeftArmColor = BrickColor.new("Light orange")
- o37.LeftLegColor = BrickColor.new("Light orange")
- o37.RightArmColor = BrickColor.new("Light orange")
- o37.RightLegColor = BrickColor.new("Light orange")
- o37.TorsoColor = BrickColor.new("Light orange")
- o38.Name = "Shirt"
- o38.Parent = o1
- o38.ShirtTemplate = "http://www.roblox.com/asset/?id=2726400331"
- o39.Name = "Pants"
- o39.Parent = o1
- o39.PantsTemplate = "http://www.roblox.com/asset/?id=3546411838"
- o40.Name = "ROAD ROLLER DA!!!"
- o40.Parent = mas
- o41.Parent = o40
- o41.Material = Enum.Material.Concrete
- o41.Reflectance = 0.10000000149012
- o41.Position = Vector3.new(32.161869, 5.82797813, -155.399384)
- o41.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o41.Anchored = true
- o41.Size = Vector3.new(10, 12, 10)
- o41.CFrame = CFrame.new(32.161869, 5.82797813, -155.399384, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o41.BottomSurface = Enum.SurfaceType.Smooth
- o41.TopSurface = Enum.SurfaceType.Smooth
- o41.Position = Vector3.new(32.161869, 5.82797813, -155.399384)
- o42.Parent = o41
- o42.Scale = Vector3.new(1, 1.02999997, 1)
- o43.Parent = o40
- o43.BrickColor = BrickColor.new("Bright yellow")
- o43.Reflectance = 0.10000000149012
- o43.Position = Vector3.new(32.15942, 5.90324354, -155.333588)
- o43.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o43.Anchored = true
- o43.Size = Vector3.new(2, 12.8000002, 2)
- o43.CFrame = CFrame.new(32.15942, 5.90324354, -155.333588, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o43.BottomSurface = Enum.SurfaceType.Smooth
- o43.TopSurface = Enum.SurfaceType.Smooth
- o43.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o43.Position = Vector3.new(32.15942, 5.90324354, -155.333588)
- o44.Parent = o43
- o45.Parent = o40
- o45.BrickColor = BrickColor.new("Bright yellow")
- o45.Reflectance = 0.10000000149012
- o45.Position = Vector3.new(32.5189819, 3.44274235, -149.92189)
- o45.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o45.Anchored = true
- o45.Size = Vector3.new(1.78999996, 5, 1)
- o45.CFrame = CFrame.new(32.5189819, 3.44274235, -149.92189, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o45.BottomSurface = Enum.SurfaceType.Smooth
- o45.TopSurface = Enum.SurfaceType.Smooth
- o45.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o45.Position = Vector3.new(32.5189819, 3.44274235, -149.92189)
- o46.Parent = o40
- o46.BrickColor = BrickColor.new("Bright yellow")
- o46.Reflectance = 0.10000000149012
- o46.Position = Vector3.new(32.4797707, 4.6469841, -148.869156)
- o46.Rotation = Vector3.new(-138.869995, -1.01999998, 178.600006)
- o46.Anchored = true
- o46.Size = Vector3.new(5, 1.39999998, 0.99000001)
- o46.CFrame = CFrame.new(32.4797707, 4.6469841, -148.869156, -0.999536514, -0.0244927648, -0.017773889, -0.0301388092, 0.752646267, 0.657723248, -0.00273200241, 0.657960117, -0.753037035)
- o46.BottomSurface = Enum.SurfaceType.Smooth
- o46.TopSurface = Enum.SurfaceType.Smooth
- o46.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o46.Position = Vector3.new(32.4797707, 4.6469841, -148.869156)
- o47.Parent = o46
- o47.MeshType = Enum.MeshType.Wedge
- o48.Name = "Center"
- o48.Parent = o40
- o48.BrickColor = BrickColor.new("Bright yellow")
- o48.Reflectance = 0.10000000149012
- o48.Transparency = 1
- o48.Position = Vector3.new(31.8729458, 12.4795456, -159.675278)
- o48.Rotation = Vector3.new(-138.869995, -1.01999998, 178.600006)
- o48.Anchored = true
- o48.Size = Vector3.new(12.5, 5.80000019, 27.6000004)
- o48.CFrame = CFrame.new(31.8729458, 12.4795456, -159.675278, -0.999541998, -0.0244929232, -0.017774133, -0.0301389992, 0.752650976, 0.657729566, -0.00273200008, 0.657963991, -0.753044486)
- o48.BottomSurface = Enum.SurfaceType.Smooth
- o48.TopSurface = Enum.SurfaceType.Smooth
- o48.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o48.Position = Vector3.new(31.8729458, 12.4795456, -159.675278)
- o49.Parent = o48
- o49.C0 = CFrame.new(-0.100002289, -2.20000029, -7.6000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o49.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o49.Part0 = o48
- o49.Part1 = o41
- o50.Parent = o48
- o50.C0 = CFrame.new(-0.100002289, -2.10000038, -7.6000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o50.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o50.Part0 = o48
- o50.Part1 = o43
- o51.Parent = o48
- o51.C0 = CFrame.new(-0.400024414, -0.400005341, -13.2999878, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o51.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o51.Part0 = o48
- o51.Part1 = o45
- o52.Parent = o48
- o52.C0 = CFrame.new(-0.400005341, 1.19999409, -13.2999859, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o52.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
- o52.Part0 = o48
- o52.Part1 = o46
- o53.Parent = o48
- o53.C0 = CFrame.new(-5.70004654, -0.230010033, 8.99998474, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o53.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o53.Part0 = o48
- o53.Part1 = o87
- o54.Parent = o48
- o54.C0 = CFrame.new(-0.100009918, 0.469994545, 13.5999641, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o54.C1 = CFrame.new(0, 0, 0, 1.49011612e-08, -3.49571337e-07, 0.999994278, 5.89458523e-07, 0.99999392, 3.49571422e-07, -0.999990225, 5.89460512e-07, -4.47034836e-08)
- o54.Part0 = o48
- o54.Part1 = o88
- o55.Parent = o48
- o55.C0 = CFrame.new(-0.100002289, 1.46999836, -3.6000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o55.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o55.Part0 = o48
- o55.Part1 = o90
- o56.Parent = o48
- o56.C0 = CFrame.new(-0.100017548, 1.79999256, -7.09999847, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o56.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o56.Part0 = o48
- o56.Part1 = o91
- o57.Parent = o48
- o57.C0 = CFrame.new(4.49999619, 7.36998749, 8.89997864, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o57.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o57.Part0 = o48
- o57.Part1 = o92
- o58.Parent = o48
- o58.C0 = CFrame.new(4.49999619, 8.8699894, 6.0999794, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o58.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o58.Part0 = o48
- o58.Part1 = o93
- o59.Parent = o48
- o59.C0 = CFrame.new(-0.100006104, -2.5299983, -2.70001984, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o59.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o59.Part0 = o48
- o59.Part1 = o94
- o60.Parent = o48
- o60.C0 = CFrame.new(-0.400001526, 3.2999897, -10.8000069, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o60.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
- o60.Part0 = o48
- o60.Part1 = o95
- o61.Parent = o48
- o61.C0 = CFrame.new(-0.100028992, 3.06999397, -3.60002518, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o61.C1 = CFrame.new(0, 0, 0, 1.49008779e-08, 6.66761935e-09, 0.999994516, 2.39330944e-07, 0.99999392, -6.66753408e-09, -0.999990225, 2.39331769e-07, -7.45059765e-08)
- o61.Part0 = o48
- o61.Part1 = o97
- o62.Parent = o48
- o62.C0 = CFrame.new(-0.100002289, 4.76998997, 7.19997787, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o62.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o62.Part0 = o48
- o62.Part1 = o99
- o63.Parent = o48
- o63.C0 = CFrame.new(-0.100002289, 0.269996643, 0.299983978, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o63.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o63.Part0 = o48
- o63.Part1 = o100
- o64.Parent = o48
- o64.C0 = CFrame.new(-0.400001526, 3.29998589, -3.40000153, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o64.C1 = CFrame.new(0, 0, 0, 1.49011612e-08, -3.49571337e-07, 0.999994278, 5.89458523e-07, 0.99999392, 3.49571422e-07, -0.999990225, 5.89460512e-07, -4.47034836e-08)
- o64.Part0 = o48
- o64.Part1 = o101
- o65.Parent = o48
- o65.C0 = CFrame.new(-4.70000076, 5.76999187, 3.29998016, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o65.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o65.Part0 = o48
- o65.Part1 = o103
- o66.Parent = o48
- o66.C0 = CFrame.new(-0.400024414, 0.299996376, -10.7999916, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o66.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o66.Part0 = o48
- o66.Part1 = o104
- o67.Parent = o48
- o67.C0 = CFrame.new(-7.60004807, -0.230009079, 8.99998474, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o67.C1 = CFrame.new(0, 0, 0, -1, 0, 4.37113883e-08, 0, 1, 0, -4.37113883e-08, 0, -1)
- o67.Part0 = o48
- o67.Part1 = o105
- o68.Parent = o48
- o68.C0 = CFrame.new(-0.300003052, 3.06999302, 0.299983978, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o68.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o68.Part0 = o48
- o68.Part1 = o107
- o69.Parent = o48
- o69.C0 = CFrame.new(5.5, -0.230006218, 8.99998474, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o69.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o69.Part0 = o48
- o69.Part1 = o108
- o70.Parent = o48
- o70.C0 = CFrame.new(-0.100009918, 4.76998997, 11.099968, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o70.C1 = CFrame.new(0, 0, 0, 1.49011612e-08, -3.49571337e-07, 0.999994278, 5.89458523e-07, 0.99999392, 3.49571422e-07, -0.999990225, 5.89460512e-07, -4.47034836e-08)
- o70.Part0 = o48
- o70.Part1 = o109
- o71.Parent = o48
- o71.C0 = CFrame.new(-0.100002289, 1.46999836, -10.8000336, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o71.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o71.Part0 = o48
- o71.Part1 = o111
- o72.Parent = o48
- o72.C0 = CFrame.new(4.49999619, 5.76999092, 3.29998016, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o72.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o72.Part0 = o48
- o72.Part1 = o112
- o73.Parent = o48
- o73.C0 = CFrame.new(-0.40001297, 2.29999352, -12.3999844, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o73.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
- o73.Part0 = o48
- o73.Part1 = o113
- o74.Parent = o48
- o74.C0 = CFrame.new(-0.100021362, -2.20000362, 8.80002213, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o74.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o74.Part0 = o48
- o74.Part1 = o115
- o75.Parent = o48
- o75.C0 = CFrame.new(-0.400001526, 3.69999981, -7.1000061, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o75.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o75.Part0 = o48
- o75.Part1 = o117
- o76.Parent = o48
- o76.C0 = CFrame.new(7.39999771, -0.230010033, 8.99997711, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o76.Part0 = o48
- o76.Part1 = o118
- o77.Parent = o48
- o77.C0 = CFrame.new(-0.300003052, 4.76999092, 1.79998398, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o77.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o77.Part0 = o48
- o77.Part1 = o120
- o78.Parent = o48
- o78.C0 = CFrame.new(-0.100002289, 0.469992638, 7.19998169, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o78.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o78.Part0 = o48
- o78.Part1 = o121
- o79.Parent = o48
- o79.C0 = CFrame.new(-0.0999755859, 3.06999588, -10.8000221, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o79.C1 = CFrame.new(0, 0, 0, -1.49008788e-08, 6.6675625e-09, -0.999994516, -2.3933373e-07, 0.99999392, 6.66761935e-09, 0.999990225, 2.39334668e-07, 7.45059765e-08)
- o79.Part0 = o48
- o79.Part1 = o122
- o80.Parent = o48
- o80.C0 = CFrame.new(-0.100002289, 0.769999504, -2.10001373, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o80.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o80.Part0 = o48
- o80.Part1 = o124
- o81.Parent = o48
- o81.C0 = CFrame.new(-0.0999755859, 8.86998558, 8.89997482, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o81.C1 = CFrame.new(0, 0, 0, 1.49008796e-08, 6.66744882e-09, 0.999994516, 2.39336913e-07, 0.99999392, -6.66736355e-09, -0.999990225, 2.39337737e-07, -7.45059765e-08)
- o81.Part0 = o48
- o81.Part1 = o125
- o82.Parent = o48
- o82.C0 = CFrame.new(-4.70000076, 8.86999321, 6.0999794, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o82.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o82.Part0 = o48
- o82.Part1 = o127
- o83.Parent = o48
- o83.C0 = CFrame.new(-4.69999313, 7.36998749, 8.89997864, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o83.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o83.Part0 = o48
- o83.Part1 = o128
- o84.Parent = o48
- o84.C0 = CFrame.new(-0.100017548, 8.86998558, 6.0999794, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o84.C1 = CFrame.new(0, 0, 0, 0, -0.999999642, 5.38727335e-28, -5.38727239e-28, -5.38727287e-28, -0.999999762, 0.999999642, 9.62964972e-35, -4.37113776e-08)
- o84.Part0 = o48
- o84.Part1 = o129
- o85.Parent = o48
- o85.C0 = CFrame.new(-0.100025177, 8.86998749, 3.29998398, 1.06581131e-14, -7.10542736e-15, -1, -8.74229471e-08, 1, -7.10542736e-15, 1, 8.742294e-08, -4.37113776e-08)
- o85.C1 = CFrame.new(0, 0, 0, -1.49008823e-08, 6.66727829e-09, -0.999994516, -2.39345496e-07, 0.99999392, 6.66733513e-09, 0.999990225, 2.39346434e-07, 7.45059765e-08)
- o85.Part0 = o48
- o85.Part1 = o130
- o86.Parent = o48
- o86.C0 = CFrame.new(0.258005589, 5.26530218, -7.02216148, 0.95105654, 0.26761654, -0.154508486, -0.10569004, 0.751547456, 0.65115732, 0.290380985, -0.602957428, 0.743048429)
- o86.Part0 = o48
- o87.Parent = o40
- o87.BrickColor = BrickColor.new("Bright yellow")
- o87.Reflectance = 0.10000000149012
- o87.Position = Vector3.new(37.41605, 18.3977776, -166.58844)
- o87.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o87.Anchored = true
- o87.Size = Vector3.new(6.80000019, 1, 6)
- o87.CFrame = CFrame.new(37.41605, 18.3977776, -166.58844, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o87.BottomSurface = Enum.SurfaceType.Smooth
- o87.TopSurface = Enum.SurfaceType.Smooth
- o87.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o87.Position = Vector3.new(37.41605, 18.3977776, -166.58844)
- o88.Parent = o40
- o88.BrickColor = BrickColor.new("Bright yellow")
- o88.Reflectance = 0.10000000149012
- o88.Position = Vector3.new(31.7196712, 21.7814007, -169.607147)
- o88.Rotation = Vector3.new(41.1300011, 1.01999998, 1.39999998)
- o88.Anchored = true
- o88.Size = Vector3.new(11, 5.4000001, 2.78999996)
- o88.CFrame = CFrame.new(31.7196712, 21.7814007, -169.607147, 0.999536276, -0.0244924352, 0.0177738983, 0.0301385447, 0.752646804, -0.657722592, 0.0027317761, 0.657959461, 0.753037572)
- o88.BottomSurface = Enum.SurfaceType.Smooth
- o88.TopSurface = Enum.SurfaceType.Smooth
- o88.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o88.Position = Vector3.new(31.7196712, 21.7814007, -169.607147)
- o89.Parent = o88
- o89.MeshType = Enum.MeshType.Wedge
- o90.Parent = o40
- o90.BrickColor = BrickColor.new("Bright yellow")
- o90.Reflectance = 0.10000000149012
- o90.Position = Vector3.new(32.000885, 11.2211246, -155.996826)
- o90.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o90.Anchored = true
- o90.Size = Vector3.new(2.5999999, 11, 1.99000001)
- o90.CFrame = CFrame.new(32.000885, 11.2211246, -155.996826, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o90.BottomSurface = Enum.SurfaceType.Smooth
- o90.TopSurface = Enum.SurfaceType.Smooth
- o90.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o90.Position = Vector3.new(32.000885, 11.2211246, -155.996826)
- o91.Parent = o40
- o91.BrickColor = BrickColor.new("Bright yellow")
- o91.Reflectance = 0.10000000149012
- o91.Position = Vector3.new(32.055027, 9.16744709, -153.144058)
- o91.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o91.Anchored = true
- o91.Size = Vector3.new(3.20000005, 11, 5)
- o91.CFrame = CFrame.new(32.055027, 9.16744709, -153.144058, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o91.BottomSurface = Enum.SurfaceType.Smooth
- o91.TopSurface = Enum.SurfaceType.Smooth
- o91.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o91.Position = Vector3.new(32.055027, 9.16744709, -153.144058)
- o92.Parent = o40
- o92.BrickColor = BrickColor.new("Mid gray")
- o92.Reflectance = 0.10000000149012
- o92.Position = Vector3.new(27.0363083, 23.7447281, -161.540466)
- o92.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o92.Anchored = true
- o92.Size = Vector3.new(1.99000001, 1, 1)
- o92.CFrame = CFrame.new(27.0363083, 23.7447281, -161.540466, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o92.BottomSurface = Enum.SurfaceType.Smooth
- o92.TopSurface = Enum.SurfaceType.Smooth
- o92.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o92.Position = Vector3.new(27.0363083, 23.7447281, -161.540466)
- o93.Parent = o40
- o93.BrickColor = BrickColor.new("Mid gray")
- o93.Reflectance = 0.10000000149012
- o93.Position = Vector3.new(27.0493374, 23.0320625, -158.444992)
- o93.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o93.Anchored = true
- o93.Size = Vector3.new(1, 1, 4.59000015)
- o93.CFrame = CFrame.new(27.0493374, 23.0320625, -158.444992, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o93.BottomSurface = Enum.SurfaceType.Smooth
- o93.TopSurface = Enum.SurfaceType.Smooth
- o93.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o93.Position = Vector3.new(27.0493374, 23.0320625, -158.444992)
- o94.Parent = o40
- o94.BrickColor = BrickColor.new("Bright yellow")
- o94.Reflectance = 0.10000000149012
- o94.Position = Vector3.new(32.0828629, 8.80247116, -159.306412)
- o94.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o94.Anchored = true
- o94.Size = Vector3.new(1, 12.6000004, 9.80000019)
- o94.CFrame = CFrame.new(32.0828629, 8.80247116, -159.306412, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o94.BottomSurface = Enum.SurfaceType.Smooth
- o94.TopSurface = Enum.SurfaceType.Smooth
- o94.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o94.Position = Vector3.new(32.0828629, 8.80247116, -159.306412)
- o95.Parent = o40
- o95.BrickColor = BrickColor.new("Bright yellow")
- o95.Reflectance = 0.10000000149012
- o95.Position = Vector3.new(32.3838997, 7.87185812, -149.370026)
- o95.Rotation = Vector3.new(-138.869995, -1.01999998, 178.600006)
- o95.Anchored = true
- o95.Size = Vector3.new(5.19000006, 1.38999999, 2.3900001)
- o95.CFrame = CFrame.new(32.3838997, 7.87185812, -149.370026, -0.999536514, -0.0244927648, -0.017773889, -0.0301388092, 0.752646267, 0.657723248, -0.00273200241, 0.657960117, -0.753037035)
- o95.BottomSurface = Enum.SurfaceType.Smooth
- o95.TopSurface = Enum.SurfaceType.Smooth
- o95.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o95.Position = Vector3.new(32.3838997, 7.87185812, -149.370026)
- o96.Parent = o95
- o96.MeshType = Enum.MeshType.Wedge
- o97.Parent = o40
- o97.BrickColor = BrickColor.new("Bright yellow")
- o97.Reflectance = 0.10000000149012
- o97.Position = Vector3.new(31.9617233, 12.4253511, -154.944077)
- o97.Rotation = Vector3.new(41.1300011, 1.01999998, 1.39999998)
- o97.Anchored = true
- o97.Size = Vector3.new(11, 0.600000024, 1.99000001)
- o97.CFrame = CFrame.new(31.9617233, 12.4253511, -154.944077, 0.999536514, -0.0244927872, 0.0177738778, 0.0301388204, 0.752646625, -0.65772289, 0.00273201126, 0.657959759, 0.753037393)
- o97.BottomSurface = Enum.SurfaceType.Smooth
- o97.TopSurface = Enum.SurfaceType.Smooth
- o97.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o97.Position = Vector3.new(31.9617233, 12.4253511, -154.944077)
- o98.Parent = o97
- o98.MeshType = Enum.MeshType.Wedge
- o99.Parent = o40
- o99.BrickColor = BrickColor.new("Bright yellow")
- o99.Reflectance = 0.10000000149012
- o99.Position = Vector3.new(31.7280979, 20.8083344, -161.95842)
- o99.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o99.Anchored = true
- o99.Size = Vector3.new(3.20000005, 11, 5.5999999)
- o99.CFrame = CFrame.new(31.7280979, 20.8083344, -161.95842, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o99.BottomSurface = Enum.SurfaceType.Smooth
- o99.TopSurface = Enum.SurfaceType.Smooth
- o99.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o99.Position = Vector3.new(31.7280979, 20.8083344, -161.95842)
- o100.Parent = o40
- o100.BrickColor = BrickColor.new("Bright yellow")
- o100.Reflectance = 0.10000000149012
- o100.Position = Vector3.new(31.9609566, 12.8830814, -159.723251)
- o100.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o100.Anchored = true
- o100.Size = Vector3.new(5, 13, 3.78999996)
- o100.CFrame = CFrame.new(31.9609566, 12.8830814, -159.723251, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o100.BottomSurface = Enum.SurfaceType.Smooth
- o100.TopSurface = Enum.SurfaceType.Smooth
- o100.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o100.Position = Vector3.new(31.9609566, 12.8830814, -159.723251)
- o101.Parent = o40
- o101.BrickColor = BrickColor.new("Bright yellow")
- o101.Reflectance = 0.10000000149012
- o101.Position = Vector3.new(32.2523689, 12.7390575, -154.942566)
- o101.Rotation = Vector3.new(41.1300011, 1.01999998, 1.39999998)
- o101.Anchored = true
- o101.Size = Vector3.new(5.19000006, 1.38999999, 2.3900001)
- o101.CFrame = CFrame.new(32.2523689, 12.7390575, -154.942566, 0.999536276, -0.0244924352, 0.0177738983, 0.0301385447, 0.752646804, -0.657722592, 0.0027317761, 0.657959461, 0.753037572)
- o101.BottomSurface = Enum.SurfaceType.Smooth
- o101.TopSurface = Enum.SurfaceType.Smooth
- o101.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o101.Position = Vector3.new(32.2523689, 12.7390575, -154.942566)
- o102.Parent = o101
- o102.MeshType = Enum.MeshType.Wedge
- o103.Parent = o40
- o103.BrickColor = BrickColor.new("Mid gray")
- o103.Reflectance = 0.10000000149012
- o103.Position = Vector3.new(36.3708153, 19.1344833, -158.351028)
- o103.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o103.Anchored = true
- o103.Size = Vector3.new(5.19000006, 1, 1)
- o103.CFrame = CFrame.new(36.3708153, 19.1344833, -158.351028, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o103.BottomSurface = Enum.SurfaceType.Smooth
- o103.TopSurface = Enum.SurfaceType.Smooth
- o103.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o103.Position = Vector3.new(36.3708153, 19.1344833, -158.351028)
- o104.Parent = o40
- o104.BrickColor = BrickColor.new("Bright yellow")
- o104.Reflectance = 0.10000000149012
- o104.Position = Vector3.new(32.4574013, 5.61392069, -151.343918)
- o104.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o104.Anchored = true
- o104.Size = Vector3.new(3.20000005, 5, 4)
- o104.CFrame = CFrame.new(32.4574013, 5.61392069, -151.343918, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o104.BottomSurface = Enum.SurfaceType.Smooth
- o104.TopSurface = Enum.SurfaceType.Smooth
- o104.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o104.Position = Vector3.new(32.4574013, 5.61392069, -151.343918)
- o105.Parent = o40
- o105.BrickColor = BrickColor.new("Bright yellow")
- o105.Reflectance = 0.10000000149012
- o105.Position = Vector3.new(39.3151779, 18.4550438, -166.583237)
- o105.Rotation = Vector3.new(95.1800003, -88.2699966, 54.0299988)
- o105.Anchored = true
- o105.Size = Vector3.new(6, 6.78999996, 2.78999996)
- o105.CFrame = CFrame.new(39.3151779, 18.4550438, -166.583237, 0.017774174, -0.024492925, -0.999541998, -0.657729506, 0.752651036, -0.0301389992, 0.753044546, 0.657963932, -0.00273200008)
- o105.BottomSurface = Enum.SurfaceType.Smooth
- o105.TopSurface = Enum.SurfaceType.Smooth
- o105.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o105.Position = Vector3.new(39.3151779, 18.4550438, -166.583237)
- o106.Parent = o105
- o106.MeshType = Enum.MeshType.Wedge
- o107.Parent = o40
- o107.BrickColor = BrickColor.new("Black")
- o107.Reflectance = 0.10000000149012
- o107.Position = Vector3.new(32.0922852, 14.9965286, -157.880417)
- o107.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o107.Anchored = true
- o107.Size = Vector3.new(0.600000024, 7.4000001, 3.78999996)
- o107.CFrame = CFrame.new(32.0922852, 14.9965286, -157.880417, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o107.BottomSurface = Enum.SurfaceType.Smooth
- o107.TopSurface = Enum.SurfaceType.Smooth
- o107.Color = Color3.new(0.105882, 0.164706, 0.207843)
- o107.Position = Vector3.new(32.0922852, 14.9965286, -157.880417)
- o108.Parent = o40
- o108.BrickColor = BrickColor.new("Bright yellow")
- o108.Reflectance = 0.10000000149012
- o108.Position = Vector3.new(26.2211304, 18.0602226, -166.619034)
- o108.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o108.Anchored = true
- o108.Size = Vector3.new(6.80000019, 1, 6)
- o108.CFrame = CFrame.new(26.2211304, 18.0602226, -166.619034, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o108.BottomSurface = Enum.SurfaceType.Smooth
- o108.TopSurface = Enum.SurfaceType.Smooth
- o108.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o108.Position = Vector3.new(26.2211304, 18.0602226, -166.619034)
- o109.Parent = o40
- o109.BrickColor = BrickColor.new("Bright yellow")
- o109.Reflectance = 0.10000000149012
- o109.Position = Vector3.new(31.6587868, 23.3734741, -164.895294)
- o109.Rotation = Vector3.new(41.1300011, 1.01999998, 1.39999998)
- o109.Anchored = true
- o109.Size = Vector3.new(11, 3.20000005, 2.19000006)
- o109.CFrame = CFrame.new(31.6587868, 23.3734741, -164.895294, 0.999536276, -0.0244924352, 0.0177738983, 0.0301385447, 0.752646804, -0.657722592, 0.0027317761, 0.657959461, 0.753037572)
- o109.BottomSurface = Enum.SurfaceType.Smooth
- o109.TopSurface = Enum.SurfaceType.Smooth
- o109.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o109.Position = Vector3.new(31.6587868, 23.3734741, -164.895294)
- o110.Parent = o109
- o110.MeshType = Enum.MeshType.Wedge
- o111.Parent = o40
- o111.BrickColor = BrickColor.new("Bright yellow")
- o111.Reflectance = 0.10000000149012
- o111.Position = Vector3.new(32.1288605, 6.48545408, -150.57489)
- o111.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o111.Anchored = true
- o111.Size = Vector3.new(2.5999999, 11, 2.3900001)
- o111.CFrame = CFrame.new(32.1288605, 6.48545408, -150.57489, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o111.BottomSurface = Enum.SurfaceType.Smooth
- o111.TopSurface = Enum.SurfaceType.Smooth
- o111.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o111.Position = Vector3.new(32.1288605, 6.48545408, -150.57489)
- o112.Parent = o40
- o112.BrickColor = BrickColor.new("Mid gray")
- o112.Reflectance = 0.10000000149012
- o112.Position = Vector3.new(27.1750317, 18.8572044, -158.37616)
- o112.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o112.Anchored = true
- o112.Size = Vector3.new(5.19000006, 1, 1)
- o112.CFrame = CFrame.new(27.1750317, 18.8572044, -158.37616, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o112.BottomSurface = Enum.SurfaceType.Smooth
- o112.TopSurface = Enum.SurfaceType.Smooth
- o112.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o112.Position = Vector3.new(27.1750317, 18.8572044, -158.37616)
- o113.Parent = o40
- o113.BrickColor = BrickColor.new("Bright yellow")
- o113.Reflectance = 0.10000000149012
- o113.Position = Vector3.new(32.4368401, 6.06685781, -148.823135)
- o113.Rotation = Vector3.new(-138.869995, -1.01999998, 178.600006)
- o113.Anchored = true
- o113.Size = Vector3.new(5, 0.800000012, 0.790000021)
- o113.CFrame = CFrame.new(32.4368401, 6.06685781, -148.823135, -0.999536514, -0.0244927648, -0.017773889, -0.0301388092, 0.752646267, 0.657723248, -0.00273200241, 0.657960117, -0.753037035)
- o113.BottomSurface = Enum.SurfaceType.Smooth
- o113.TopSurface = Enum.SurfaceType.Smooth
- o113.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o113.Position = Vector3.new(32.4368401, 6.06685781, -148.823135)
- o114.Parent = o113
- o114.MeshType = Enum.MeshType.Wedge
- o115.Parent = o40
- o115.Material = Enum.Material.Concrete
- o115.Reflectance = 0.10000000149012
- o115.Position = Vector3.new(31.8703938, 16.6147614, -167.749329)
- o115.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o115.Anchored = true
- o115.Size = Vector3.new(10, 12, 10)
- o115.CFrame = CFrame.new(31.8703938, 16.6147614, -167.749329, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o115.BottomSurface = Enum.SurfaceType.Smooth
- o115.TopSurface = Enum.SurfaceType.Smooth
- o115.Position = Vector3.new(31.8703938, 16.6147614, -167.749329)
- o116.Parent = o115
- o116.Scale = Vector3.new(1, 1.02999997, 1)
- o117.Parent = o40
- o117.BrickColor = BrickColor.new("Bright yellow")
- o117.Reflectance = 0.10000000149012
- o117.Position = Vector3.new(32.3083382, 10.6065254, -151.893097)
- o117.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o117.Anchored = true
- o117.Size = Vector3.new(0.600000024, 5.19000006, 5)
- o117.CFrame = CFrame.new(32.3083382, 10.6065254, -151.893097, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o117.BottomSurface = Enum.SurfaceType.Smooth
- o117.TopSurface = Enum.SurfaceType.Smooth
- o117.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o117.Position = Vector3.new(32.3083382, 10.6065254, -151.893097)
- o118.Parent = o40
- o118.BrickColor = BrickColor.new("Bright yellow")
- o118.Reflectance = 0.10000000149012
- o118.Position = Vector3.new(24.3220043, 18.0029507, -166.624222)
- o118.Rotation = Vector3.new(-84.8199997, 88.2699966, 125.970001)
- o118.Anchored = true
- o118.Size = Vector3.new(6, 6.78999996, 2.78999996)
- o118.CFrame = CFrame.new(24.3220043, 18.0029507, -166.624222, -0.0177741311, -0.024492925, 0.999541998, 0.657729506, 0.752651036, 0.0301389713, -0.753044546, 0.657963932, 0.00273203291)
- o118.BottomSurface = Enum.SurfaceType.Smooth
- o118.TopSurface = Enum.SurfaceType.Smooth
- o118.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o118.Position = Vector3.new(24.3220043, 18.0029507, -166.624222)
- o119.Parent = o118
- o119.MeshType = Enum.MeshType.Wedge
- o120.Parent = o40
- o120.BrickColor = BrickColor.new("Black")
- o120.Reflectance = 0.10000000149012
- o120.Position = Vector3.new(32.0239868, 17.2626286, -157.891449)
- o120.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o120.Anchored = true
- o120.Size = Vector3.new(2.78999996, 7.4000001, 0.790000021)
- o120.CFrame = CFrame.new(32.0239868, 17.2626286, -157.891449, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o120.BottomSurface = Enum.SurfaceType.Smooth
- o120.TopSurface = Enum.SurfaceType.Smooth
- o120.Color = Color3.new(0.105882, 0.164706, 0.207843)
- o120.Position = Vector3.new(32.0239868, 17.2626286, -157.891449)
- o121.Parent = o40
- o121.BrickColor = BrickColor.new("Bright yellow")
- o121.Reflectance = 0.10000000149012
- o121.Position = Vector3.new(31.8334179, 17.5719414, -164.787674)
- o121.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o121.Anchored = true
- o121.Size = Vector3.new(5.4000001, 11, 10)
- o121.CFrame = CFrame.new(31.8334179, 17.5719414, -164.787674, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o121.BottomSurface = Enum.SurfaceType.Smooth
- o121.TopSurface = Enum.SurfaceType.Smooth
- o121.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o121.Position = Vector3.new(31.8334179, 17.5719414, -164.787674)
- o122.Parent = o40
- o122.BrickColor = BrickColor.new("Bright yellow")
- o122.Reflectance = 0.10000000149012
- o122.Position = Vector3.new(32.0896416, 7.68970013, -149.522156)
- o122.Rotation = Vector3.new(-138.869995, -1.01999998, 178.600006)
- o122.Anchored = true
- o122.Size = Vector3.new(11, 0.600000024, 2.3900001)
- o122.CFrame = CFrame.new(32.0896416, 7.68970013, -149.522156, -0.999536514, -0.0244927648, -0.017773889, -0.0301388092, 0.752646267, 0.657723248, -0.00273200241, 0.657960117, -0.753037035)
- o122.BottomSurface = Enum.SurfaceType.Smooth
- o122.TopSurface = Enum.SurfaceType.Smooth
- o122.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o122.Position = Vector3.new(32.0896416, 7.68970013, -149.522156)
- o123.Parent = o122
- o123.MeshType = Enum.MeshType.Wedge
- o124.Parent = o40
- o124.BrickColor = BrickColor.new("Bright yellow")
- o124.Reflectance = 0.10000000149012
- o124.Position = Vector3.new(31.9913692, 11.6808596, -157.586975)
- o124.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o124.Anchored = true
- o124.Size = Vector3.new(4, 13, 1)
- o124.CFrame = CFrame.new(31.9913692, 11.6808596, -157.586975, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o124.BottomSurface = Enum.SurfaceType.Smooth
- o124.TopSurface = Enum.SurfaceType.Smooth
- o124.Color = Color3.new(0.960784, 0.803922, 0.188235)
- o124.Position = Vector3.new(31.9913692, 11.6808596, -157.586975)
- o125.Parent = o40
- o125.BrickColor = BrickColor.new("Mid gray")
- o125.Reflectance = 0.10000000149012
- o125.Position = Vector3.new(31.597435, 25.0123386, -160.540955)
- o125.Rotation = Vector3.new(41.1300011, 1.01999998, 1.39999998)
- o125.Anchored = true
- o125.Size = Vector3.new(10.1000004, 1, 0.99000001)
- o125.CFrame = CFrame.new(31.597435, 25.0123386, -160.540955, 0.999536514, -0.0244927872, 0.0177738778, 0.0301388204, 0.752646625, -0.65772289, 0.00273201126, 0.657959759, 0.753037393)
- o125.BottomSurface = Enum.SurfaceType.Smooth
- o125.TopSurface = Enum.SurfaceType.Smooth
- o125.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o125.Position = Vector3.new(31.597435, 25.0123386, -160.540955)
- o126.Parent = o125
- o126.MeshType = Enum.MeshType.Wedge
- o127.Parent = o40
- o127.BrickColor = BrickColor.new("Mid gray")
- o127.Reflectance = 0.10000000149012
- o127.Position = Vector3.new(36.245121, 23.3093452, -158.419861)
- o127.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o127.Anchored = true
- o127.Size = Vector3.new(1, 1, 4.59000015)
- o127.CFrame = CFrame.new(36.245121, 23.3093452, -158.419861, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o127.BottomSurface = Enum.SurfaceType.Smooth
- o127.TopSurface = Enum.SurfaceType.Smooth
- o127.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o127.Position = Vector3.new(36.245121, 23.3093452, -158.419861)
- o128.Parent = o40
- o128.BrickColor = BrickColor.new("Mid gray")
- o128.Reflectance = 0.10000000149012
- o128.Position = Vector3.new(36.2320862, 24.022007, -161.515335)
- o128.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o128.Anchored = true
- o128.Size = Vector3.new(1.99000001, 1, 1)
- o128.CFrame = CFrame.new(36.2320862, 24.022007, -161.515335, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o128.BottomSurface = Enum.SurfaceType.Smooth
- o128.TopSurface = Enum.SurfaceType.Smooth
- o128.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o128.Position = Vector3.new(36.2320862, 24.022007, -161.515335)
- o129.Parent = o40
- o129.BrickColor = BrickColor.new("Mid gray")
- o129.Reflectance = 0.10000000149012
- o129.Position = Vector3.new(31.6472435, 23.1707001, -158.432434)
- o129.Rotation = Vector3.new(-138.869995, -1.01999998, 88.5999985)
- o129.Anchored = true
- o129.Size = Vector3.new(1, 1, 4.59000015)
- o129.CFrame = CFrame.new(31.6472435, 23.1707001, -158.432434, 0.0244929157, -0.999541759, -0.0177741684, -0.752650738, -0.0301389638, 0.657729268, -0.657963693, -0.00273203221, -0.753044248)
- o129.BottomSurface = Enum.SurfaceType.Smooth
- o129.TopSurface = Enum.SurfaceType.Smooth
- o129.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o129.Position = Vector3.new(31.6472435, 23.1707001, -158.432434)
- o130.Parent = o40
- o130.BrickColor = BrickColor.new("Mid gray")
- o130.Reflectance = 0.10000000149012
- o130.Position = Vector3.new(31.6970196, 21.3290615, -156.323914)
- o130.Rotation = Vector3.new(-138.869995, -1.01999998, 178.600006)
- o130.Anchored = true
- o130.Size = Vector3.new(10.1000004, 1, 0.99000001)
- o130.CFrame = CFrame.new(31.6970196, 21.3290615, -156.323914, -0.999536514, -0.0244927648, -0.017773889, -0.0301388092, 0.752646267, 0.657723248, -0.00273200241, 0.657960117, -0.753037035)
- o130.BottomSurface = Enum.SurfaceType.Smooth
- o130.TopSurface = Enum.SurfaceType.Smooth
- o130.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o130.Position = Vector3.new(31.6970196, 21.3290615, -156.323914)
- o131.Parent = o130
- o131.MeshType = Enum.MeshType.Wedge
- o132.Name = "Radio"
- o132.Parent = mas
- o133.Name = "base"
- o133.Parent = o132
- o133.Material = Enum.Material.Metal
- o133.BrickColor = BrickColor.new("Dark stone grey")
- o133.Transparency = 1
- o133.Position = Vector3.new(40.2306595, 1.00001204, -157.786499)
- o133.Rotation = Vector3.new(180, -78, -180)
- o133.Anchored = true
- o133.Size = Vector3.new(3, 2, 2)
- o133.CFrame = CFrame.new(40.2306595, 1.00001204, -157.786499, -0.207912877, 7.97467438e-16, -0.978151441, 1.287861e-14, 1, -3.55272046e-15, 0.978151441, 1.33358417e-14, -0.207912877)
- o133.BottomSurface = Enum.SurfaceType.Smooth
- o133.TopSurface = Enum.SurfaceType.Smooth
- o133.Color = Color3.new(0.388235, 0.372549, 0.384314)
- o133.Position = Vector3.new(40.2306595, 1.00001204, -157.786499)
- o134.Parent = o133
- o134.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o134.C1 = CFrame.new(466.33606, -1.00001204, 203.726913, 0.207912877, 0.978151441, 1.287861e-14, -7.97467438e-16, 1.33358417e-14, 1, 0.978151441, -0.207912877, -3.55272046e-15)
- o134.Part1 = o133
- o135.Name = "bar"
- o135.Parent = o132
- o135.Material = Enum.Material.SmoothPlastic
- o135.BrickColor = BrickColor.new("Dark stone grey")
- o135.Transparency = 1
- o135.Position = Vector3.new(40.2214546, 2.30000925, -157.021698)
- o135.Rotation = Vector3.new(180, -78, 165)
- o135.Anchored = true
- o135.Size = Vector3.new(0.300000012, 1.5, 0.300000012)
- o135.CFrame = CFrame.new(40.2214546, 2.30000925, -157.021698, -0.200828403, -0.0538117588, -0.978151441, -0.258818775, 0.965925634, -3.55272046e-15, 0.944821596, 0.253163964, -0.207912877)
- o135.BottomSurface = Enum.SurfaceType.Smooth
- o135.TopSurface = Enum.SurfaceType.Smooth
- o135.Color = Color3.new(0.388235, 0.372549, 0.384314)
- o135.Position = Vector3.new(40.2214546, 2.30000925, -157.021698)
- o136.Name = "bar"
- o136.Parent = o132
- o136.Material = Enum.Material.SmoothPlastic
- o136.BrickColor = BrickColor.new("Dark stone grey")
- o136.Transparency = 1
- o136.Position = Vector3.new(40.3877716, 2.30001402, -157.804214)
- o136.Rotation = Vector3.new(180, -78, -165)
- o136.Anchored = true
- o136.Size = Vector3.new(0.300000012, 1.5, 0.300000012)
- o136.CFrame = CFrame.new(40.3877716, 2.30001402, -157.804214, -0.200828388, 0.0538118035, -0.978151441, 0.258818984, 0.965925634, -3.55272046e-15, 0.944821596, -0.253164202, -0.207912877)
- o136.BottomSurface = Enum.SurfaceType.Smooth
- o136.TopSurface = Enum.SurfaceType.Smooth
- o136.Color = Color3.new(0.388235, 0.372549, 0.384314)
- o136.Position = Vector3.new(40.3877716, 2.30001402, -157.804214)
- o137.Name = "front"
- o137.Parent = o132
- o137.Material = Enum.Material.Metal
- o137.Transparency = 1
- o137.Position = Vector3.new(41.2577057, 1.00001204, -157.568192)
- o137.Rotation = Vector3.new(180, -78, -180)
- o137.Anchored = true
- o137.Size = Vector3.new(2.5999999, 1.5999999, 0.100000001)
- o137.CFrame = CFrame.new(41.2577057, 1.00001204, -157.568192, -0.207912847, 6.30501096e-10, -0.978151441, -2.10399573e-08, 0.999999762, -3.55272046e-15, 0.978151321, -9.15701381e-09, -0.207912877)
- o137.BottomSurface = Enum.SurfaceType.Smooth
- o137.TopSurface = Enum.SurfaceType.Smooth
- o137.Position = Vector3.new(41.2577057, 1.00001204, -157.568192)
- o138.Name = "front-frontbar"
- o138.Parent = o132
- o138.Material = Enum.Material.Metal
- o138.BrickColor = BrickColor.new("Mid gray")
- o138.Transparency = 1
- o138.Position = Vector3.new(41.4594917, 1.30001295, -158.036514)
- o138.Rotation = Vector3.new(180, -78, -180)
- o138.Anchored = true
- o138.Size = Vector3.new(1.19999957, 0.199999854, 0.100000001)
- o138.CFrame = CFrame.new(41.4594917, 1.30001295, -158.036514, -0.207912832, 8.43890243e-16, -0.978151441, 1.46272087e-14, 0.999999821, -3.55272046e-15, 0.978151321, 1.15154697e-14, -0.207912877)
- o138.BottomSurface = Enum.SurfaceType.Smooth
- o138.TopSurface = Enum.SurfaceType.Smooth
- o138.Color = Color3.new(0.803922, 0.803922, 0.803922)
- o138.Position = Vector3.new(41.4594917, 1.30001295, -158.036514)
- o139.Name = "front-frontbuttongreen"
- o139.Parent = o132
- o139.Material = Enum.Material.Metal
- o139.BrickColor = BrickColor.new("Lime green")
- o139.Transparency = 1
- o139.Position = Vector3.new(41.3555298, 0.900014043, -157.547409)
- o139.Rotation = Vector3.new(180, -78, -180)
- o139.Anchored = true
- o139.Size = Vector3.new(0.199999616, 0.199999854, 0.100000001)
- o139.CFrame = CFrame.new(41.3555298, 0.900014043, -157.547409, -0.207912847, 6.30501318e-10, -0.978151441, -6.13879569e-09, 0.999999702, -3.55272046e-15, 0.978151321, -9.15701204e-09, -0.207912877)
- o139.BottomSurface = Enum.SurfaceType.Smooth
- o139.TopSurface = Enum.SurfaceType.Smooth
- o139.Color = Color3.new(0, 1, 0)
- o139.Position = Vector3.new(41.3555298, 0.900014043, -157.547409)
- o140.Name = "front-frontbuttonred"
- o140.Parent = o132
- o140.Material = Enum.Material.Metal
- o140.BrickColor = BrickColor.new("Really red")
- o140.Transparency = 1
- o140.Position = Vector3.new(41.4387131, 0.900014043, -157.93869)
- o140.Rotation = Vector3.new(180, -78, -180)
- o140.Anchored = true
- o140.Size = Vector3.new(0.199999616, 0.199999854, 0.100000001)
- o140.CFrame = CFrame.new(41.4387131, 0.900014043, -157.93869, -0.207912847, 6.30501318e-10, -0.978151441, -6.13879569e-09, 0.999999702, -3.55272046e-15, 0.978151321, -9.15701204e-09, -0.207912877)
- o140.BottomSurface = Enum.SurfaceType.Smooth
- o140.TopSurface = Enum.SurfaceType.Smooth
- o140.Color = Color3.new(1, 0, 0)
- o140.Position = Vector3.new(41.4387131, 0.900014043, -157.93869)
- o141.Name = "sound"
- o141.Parent = o132
- o141.Material = Enum.Material.DiamondPlate
- o141.Transparency = 1
- o141.Position = Vector3.new(40.9373093, 1.00001204, -157.022858)
- o141.Rotation = Vector3.new(180, -78, -180)
- o141.Anchored = true
- o141.Shape = Enum.PartType.Ball
- o141.Size = Vector3.new(1, 1, 1)
- o141.CFrame = CFrame.new(40.9373093, 1.00001204, -157.022858, -0.207912877, 4.17379191e-16, -0.978151441, 1.46410899e-14, 0.999999881, -3.55272046e-15, 0.978151441, 1.32550492e-14, -0.207912877)
- o141.BottomSurface = Enum.SurfaceType.Smooth
- o141.TopSurface = Enum.SurfaceType.Smooth
- o141.Position = Vector3.new(40.9373093, 1.00001204, -157.022858)
- o142.Name = "song"
- o142.Parent = o141
- o142.SoundId = "rbxassetid://988225348"
- o142:Play()
- o142.Volume = 50
- o142.Looped = true
- o143.Name = "ting16036"
- o143.Parent = mas
- o143.PrimaryPart = o151
- o144.Name = "Head"
- o144.Parent = o143
- o144.BrickColor = BrickColor.new("Light orange")
- o144.Position = Vector3.new(34.6013718, 0.712160647, -151.502747)
- o144.Rotation = Vector3.new(74.0400009, -0.810000002, -0.230000004)
- o144.Anchored = true
- o144.FormFactor = Enum.FormFactor.Symmetric
- o144.Size = Vector3.new(2, 1, 1)
- o144.CFrame = CFrame.new(34.6013718, 0.712160647, -151.502747, 0.999892354, 0.00403538533, -0.0141092688, -0.0146750053, 0.274953961, -0.961345494, 0, 0.961448908, 0.274983585)
- o144.TopSurface = Enum.SurfaceType.Smooth
- o144.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o144.Position = Vector3.new(34.6013718, 0.712160647, -151.502747)
- o145.Parent = o144
- o145.Scale = Vector3.new(1.25, 1.25, 1.25)
- o150.Name = "face"
- o150.Parent = o144
- o150.Texture = "http://www.roblox.com/asset/?id=406035320 "
- o151.Name = "HumanoidRootPart"
- o151.Parent = o143
- o151.Transparency = 1
- o151.Position = Vector3.new(34.5987625, 0.534493446, -152.95192)
- o151.Rotation = Vector3.new(90, -0.839999974, 0)
- o151.Anchored = true
- o151.CanCollide = false
- o151.FormFactor = Enum.FormFactor.Symmetric
- o151.Size = Vector3.new(2, 2, 1)
- o151.CFrame = CFrame.new(34.5987625, 0.534493446, -152.95192, 0.99989295, 0, -0.0146750147, -0.0146750147, 0, -0.99989295, 0, 1, 0)
- o151.BottomSurface = Enum.SurfaceType.Smooth
- o151.TopSurface = Enum.SurfaceType.Smooth
- o151.Position = Vector3.new(34.5987625, 0.534493446, -152.95192)
- o152.Name = "RootJoint"
- o152.Parent = o151
- o152.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
- o152.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
- o152.Part0 = o151
- o152.Part1 = o159
- o152.MaxVelocity = 0.10000000149012
- o153.Name = "Left Arm"
- o153.Parent = o143
- o153.BrickColor = BrickColor.new("Light orange")
- o153.Position = Vector3.new(33.1205788, 1.64191747, -151.346664)
- o153.Rotation = Vector3.new(-124.010002, -4.82999992, 8.57999992)
- o153.Anchored = true
- o153.CanCollide = false
- o153.FormFactor = Enum.FormFactor.Symmetric
- o153.Size = Vector3.new(1, 2, 1)
- o153.CFrame = CFrame.new(33.1205788, 1.64191747, -151.346664, 0.985311985, -0.148602605, -0.0841291323, -0.0144600002, -0.563499153, 0.825990081, -0.170150995, -0.812641382, -0.557371199)
- o153.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o153.Position = Vector3.new(33.1205788, 1.64191747, -151.346664)
- o155.Name = "Left Leg"
- o155.Parent = o143
- o155.BrickColor = BrickColor.new("Light orange")
- o155.Position = Vector3.new(34.0988159, 0.541830957, -154.95192)
- o155.Rotation = Vector3.new(90, -0.839999974, 0)
- o155.Anchored = true
- o155.CanCollide = false
- o155.FormFactor = Enum.FormFactor.Symmetric
- o155.Size = Vector3.new(1, 2, 1)
- o155.CFrame = CFrame.new(34.0988159, 0.541830957, -154.95192, 0.99989295, 0, -0.0146750147, -0.0146750147, 0, -0.99989295, 0, 1, 0)
- o155.BottomSurface = Enum.SurfaceType.Smooth
- o155.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o155.Position = Vector3.new(34.0988159, 0.541830957, -154.95192)
- o156.Name = "Right Arm"
- o156.Parent = o143
- o156.BrickColor = BrickColor.new("Light orange")
- o156.Position = Vector3.new(36.0986023, 0.512480974, -152.95192)
- o156.Rotation = Vector3.new(169.240005, -0.159999996, 0.829999983)
- o156.Anchored = true
- o156.CanCollide = false
- o156.FormFactor = Enum.FormFactor.Symmetric
- o156.Size = Vector3.new(1, 2, 1)
- o156.CFrame = CFrame.new(36.0986023, 0.512480974, -152.95192, 0.999892354, -0.0144140897, -0.00273894216, -0.0146720055, -0.982315481, -0.186657995, 0, 0.186678097, -0.982421219)
- o156.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o156.Position = Vector3.new(36.0986023, 0.512480974, -152.95192)
- o158.Name = "Right Leg"
- o158.Parent = o143
- o158.BrickColor = BrickColor.new("Light orange")
- o158.Position = Vector3.new(35.0987091, 0.527155936, -154.95192)
- o158.Rotation = Vector3.new(90, -0.839999974, 0)
- o158.Anchored = true
- o158.CanCollide = false
- o158.FormFactor = Enum.FormFactor.Symmetric
- o158.Size = Vector3.new(1, 2, 1)
- o158.CFrame = CFrame.new(35.0987091, 0.527155936, -154.95192, 0.99989295, 0, -0.0146750147, -0.0146750147, 0, -0.99989295, 0, 1, 0)
- o158.BottomSurface = Enum.SurfaceType.Smooth
- o158.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o158.Position = Vector3.new(35.0987091, 0.527155936, -154.95192)
- o159.Name = "Torso"
- o159.Parent = o143
- o159.BrickColor = BrickColor.new("Light orange")
- o159.Position = Vector3.new(34.5987625, 0.534493446, -152.95192)
- o159.Rotation = Vector3.new(90, -0.839999974, 0)
- o159.Anchored = true
- o159.FormFactor = Enum.FormFactor.Symmetric
- o159.Size = Vector3.new(2, 2, 1)
- o159.CFrame = CFrame.new(34.5987625, 0.534493446, -152.95192, 0.99989295, 0, -0.0146750147, -0.0146750147, 0, -0.99989295, 0, 1, 0)
- o159.LeftSurface = Enum.SurfaceType.Weld
- o159.RightSurface = Enum.SurfaceType.Weld
- o159.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o159.Position = Vector3.new(34.5987625, 0.534493446, -152.95192)
- o160.Name = "roblox"
- o160.Parent = o159
- o160.Texture = "http://www.roblox.com/asset/?id=3966428040"
- o161.Name = "Right Hip"
- o161.Parent = o159
- o161.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o161.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o161.Part0 = o159
- o161.Part1 = o158
- o161.MaxVelocity = 0.10000000149012
- o162.Name = "Left Hip"
- o162.Parent = o159
- o162.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o162.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o162.Part0 = o159
- o162.Part1 = o155
- o162.MaxVelocity = 0.10000000149012
- o171.Parent = o143
- o171.RightLeg = o158
- o171.LeftLeg = o155
- o171.Torso = o151
- o172.Parent = o143
- o172.HeadColor = BrickColor.new("Light orange")
- o172.LeftArmColor = BrickColor.new("Light orange")
- o172.LeftLegColor = BrickColor.new("Light orange")
- o172.RightArmColor = BrickColor.new("Light orange")
- o172.RightLegColor = BrickColor.new("Light orange")
- o172.TorsoColor = BrickColor.new("Light orange")
- o173.Name = "Shirt"
- o173.Parent = o143
- o173.ShirtTemplate = "http://www.roblox.com/asset/?id=2726400331"
- o174.Parent = o143
- o174.Graphic = "http://www.roblox.com/asset/?id=3966428040"
- o175.Name = "Pants"
- o175.Parent = o143
- o175.PantsTemplate = "http://www.roblox.com/asset/?id=3546411838"
- mas.Parent = workspace
- mas:MakeJoints()
- local mas1 = mas:GetChildren()
- for i=1,#mas1 do
- mas1[i].Parent = workspace
- ypcall(function() mas1[i]:MakeJoints() end)
- end
- mas:Destroy()
- for i=1,#cors do
- coroutine.resume(cors[i])
- end
Advertisement
Add Comment
Please, Sign In to add comment