Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
- -- StarterGui --
- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
- -- Place this into StarterGui or StarterPack --
- -- CREDIT --
- -- WhoBloxxedWho; for the initial script --
- -- DoogleFox; some stuff ripped from his panner script --
- -- DuruTeru; shoving it all into this script and then some :) --
- -- UPDATE: turned it into r15, made it so you can swim right in water --
- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
- --https://github.com/Mokiros/roblox-FE-compatibility
- if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
- local Player,game,owner = owner,game
- local RealPlayer = Player
- do
- print("FE Compatibility code V2 by Mokiros")
- local RealPlayer = RealPlayer
- script.Parent = RealPlayer.Character
- --Fake event to make stuff like Mouse.KeyDown work
- local Disconnect_Function = function(this)
- this[1].Functions[this[2]] = nil
- end
- local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
- local FakeEvent_Metatable = {__index={
- Connect = function(this,f)
- local i = tostring(math.random(0,10000))
- while this.Functions[i] do
- i = tostring(math.random(0,10000))
- end
- this.Functions[i] = f
- return setmetatable({this,i},Disconnect_Metatable)
- end
- }}
- FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
- local function fakeEvent()
- return setmetatable({Functions={}},FakeEvent_Metatable)
- end
- --Creating fake input objects with fake variables
- local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
- FakeMouse.keyUp = FakeMouse.KeyUp
- FakeMouse.keyDown = FakeMouse.KeyDown
- local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
- local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
- CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
- end}
- --Merged 2 functions into one by checking amount of arguments
- CAS.UnbindAction = CAS.BindAction
- --This function will trigger the events that have been :Connect()'ed
- local function TriggerEvent(self,ev,...)
- for _,f in pairs(self[ev].Functions) do
- f(...)
- end
- end
- FakeMouse.TriggerEvent = TriggerEvent
- UIS.TriggerEvent = TriggerEvent
- --Client communication
- local Event = Instance.new("RemoteEvent")
- Event.Name = "UserInput_Event"
- Event.OnServerEvent:Connect(function(plr,io)
- if plr~=RealPlayer then return end
- FakeMouse.Target = io.Target
- FakeMouse.Hit = io.Hit
- if not io.isMouse then
- local b = io.UserInputState == Enum.UserInputState.Begin
- if io.UserInputType == Enum.UserInputType.MouseButton1 then
- return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
- end
- if io.UserInputType == Enum.UserInputType.MouseButton2 then
- return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
- end
- for _,t in pairs(CAS.Actions) do
- for _,k in pairs(t.Keys) do
- if k==io.KeyCode then
- t.Function(t.Name,io.UserInputState,io)
- end
- end
- end
- FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
- UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
- end
- end)
- Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
- local Mouse = owner:GetMouse()
- local UIS = game:GetService("UserInputService")
- local input = function(io,RobloxHandled)
- if RobloxHandled then return end
- --Since InputObject is a client-side instance, we create and pass table instead
- Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
- end
- UIS.InputBegan:Connect(input)
- UIS.InputEnded:Connect(input)
- local h,t
- --Give the server mouse data every second frame, but only if the values changed
- --If player is not moving their mouse, client won't fire events
- local HB = game:GetService("RunService").Heartbeat
- while true do
- if h~=Mouse.Hit or t~=Mouse.Target then
- h,t=Mouse.Hit,Mouse.Target
- Event:FireServer({isMouse=true,Target=t,Hit=h})
- end
- --Wait 2 frames
- for i=1,2 do
- HB:Wait()
- end
- end]==],script)
- ----Sandboxed game object that allows the usage of client-side methods and services
- --Real game object
- local RealGame = game
- --Metatable for fake service
- local FakeService_Metatable = {
- __index = function(self,k)
- local s = rawget(self,"_RealService")
- if s then
- return typeof(s[k])=="function"
- and function(_,...)return s[k](s,...)end or s[k]
- end
- end,
- __newindex = function(self,k,v)
- local s = rawget(self,"_RealService")
- if s then s[k]=v end
- end
- }
- local function FakeService(t,RealService)
- t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
- return setmetatable(t,FakeService_Metatable)
- end
- --Fake game object
- local FakeGame = {
- GetService = function(self,s)
- return rawget(self,s) or RealGame:GetService(s)
- end,
- Players = FakeService({
- LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
- },"Players"),
- UserInputService = FakeService(UIS,"UserInputService"),
- ContextActionService = FakeService(CAS,"ContextActionService"),
- RunService = FakeService({
- _btrs = {},
- RenderStepped = RealGame:GetService("RunService").Heartbeat,
- BindToRenderStep = function(self,name,_,fun)
- self._btrs[name] = self.Heartbeat:Connect(fun)
- end,
- UnbindFromRenderStep = function(self,name)
- self._btrs[name]:Disconnect()
- end,
- },"RunService")
- }
- rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
- FakeGame.service = FakeGame.GetService
- FakeService(FakeGame,game)
- --Changing owner to fake player object to support owner:GetMouse()
- game,owner = FakeGame,FakeGame.Players.LocalPlayer
- end
- local s = Instance.new("Sound")
- s.Name = "Name"
- s.SoundId = "rbxassetid://2999573171"
- s.Volume = 1
- s.Looped = true
- s.archivable = false
- s.Parent = game.Workspace
- wait(1)
- s:play()
- repeat wait() until game:GetService("Players").LocalPlayer.Character ~= nil
- local runService = game:GetService("RunService")
- local input = game:GetService("UserInputService")
- local players = game:GetService("Players")
- CanToggleMouse = {allowed = true; activationkey = Enum.KeyCode.F;} -- lets you move your mouse around in firstperson
- CanViewBody = false -- whether you see your body
- Sensitivity = 0.6 -- anything higher would make looking up and down harder; recommend anything between 0~1
- Smoothness = 0.05 -- recommend anything between 0~1
- FieldOfView = 90 -- fov
- local cam = game.Workspace.CurrentCamera
- local player = players.LocalPlayer
- local m = player:GetMouse()
- m.Icon = "http://www.roblox.com/asset/?id=569021388" -- replaces mouse icon
- local character = player.Character or player.CharacterAdded:wait()
- local humanoidpart = character.HumanoidRootPart
- local head = character:WaitForChild("Head")
- local CamPos,TargetCamPos = cam.CoordinateFrame.p,cam.CoordinateFrame.p
- local AngleX,TargetAngleX = 0,0
- local AngleY,TargetAngleY = 0,0
- local running = true
- local freemouse = false
- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
- function updatechar()
- for _, v in pairs(character:GetChildren())do
- if CanViewBody then
- if v.Name == 'Head' then
- v.LocalTransparencyModifier = 1
- v.CanCollide = false
- end
- else
- if v:IsA'Part' or v:IsA'UnionOperation' or v:IsA'MeshPart' then
- v.LocalTransparencyModifier = 1
- v.CanCollide = false
- end
- end
- if v:IsA'Accessory' then
- v:FindFirstChild('Handle').LocalTransparencyModifier = 1
- v:FindFirstChild('Handle').CanCollide = false
- end
- if v:IsA'Hat' then
- v:FindFirstChild('Handle').LocalTransparencyModifier = 1
- v:FindFirstChild('Handle').CanCollide = false
- end
- end
- end
- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
- input.InputChanged:connect(function(inputObject)
- if inputObject.UserInputType == Enum.UserInputType.MouseMovement then
- local delta = Vector2.new(inputObject.Delta.x/Sensitivity,inputObject.Delta.y/Sensitivity) * Smoothness
- local X = TargetAngleX - delta.y
- TargetAngleX = (X >= 80 and 80) or (X <= -80 and -80) or X
- TargetAngleY = (TargetAngleY - delta.x) %360
- end
- end)
- input.InputBegan:connect(function(inputObject)
- --Converted with ttyyuu12345's model to script plugin v4
- function sandbox(var,func)
- local env = getfenv(func)
- local newenv = setmetatable({},{
- __index = function(self,k)
- if k=="script" then
- return var
- else
- return env[k]
- end
- end,
- })
- setfenv(func,newenv)
- return func
- end
- cors = {}
- mas = Instance.new("Model",game:GetService("Lighting"))
- Tool0 = Instance.new("Tool")
- LocalScript1 = Instance.new("LocalScript")
- Script2 = Instance.new("Script")
- ObjectValue3 = Instance.new("ObjectValue")
- LocalScript4 = Instance.new("LocalScript")
- LocalScript5 = Instance.new("LocalScript")
- Script6 = Instance.new("Script")
- BoolValue7 = Instance.new("BoolValue")
- BoolValue8 = Instance.new("BoolValue")
- BoolValue9 = Instance.new("BoolValue")
- SpecialMesh10 = Instance.new("SpecialMesh")
- Animation11 = Instance.new("Animation")
- Animation12 = Instance.new("Animation")
- Animation13 = Instance.new("Animation")
- Animation14 = Instance.new("Animation")
- Animation15 = Instance.new("Animation")
- Animation16 = Instance.new("Animation")
- Script17 = Instance.new("Script")
- Camera18 = Instance.new("Camera")
- Part19 = Instance.new("Part")
- Sound20 = Instance.new("Sound")
- Sound21 = Instance.new("Sound")
- Sound22 = Instance.new("Sound")
- Sound23 = Instance.new("Sound")
- Sound24 = Instance.new("Sound")
- Part25 = Instance.new("Part")
- BlockMesh26 = Instance.new("BlockMesh")
- Weld27 = Instance.new("Weld")
- Weld28 = Instance.new("Weld")
- Weld29 = Instance.new("Weld")
- Part30 = Instance.new("Part")
- BlockMesh31 = Instance.new("BlockMesh")
- Weld32 = Instance.new("Weld")
- Weld33 = Instance.new("Weld")
- Weld34 = Instance.new("Weld")
- Part35 = Instance.new("Part")
- BlockMesh36 = Instance.new("BlockMesh")
- Weld37 = Instance.new("Weld")
- Weld38 = Instance.new("Weld")
- Weld39 = Instance.new("Weld")
- Part40 = Instance.new("Part")
- BlockMesh41 = Instance.new("BlockMesh")
- Weld42 = Instance.new("Weld")
- Weld43 = Instance.new("Weld")
- Weld44 = Instance.new("Weld")
- Part45 = Instance.new("Part")
- BlockMesh46 = Instance.new("BlockMesh")
- Weld47 = Instance.new("Weld")
- Weld48 = Instance.new("Weld")
- Part49 = Instance.new("Part")
- BlockMesh50 = Instance.new("BlockMesh")
- Weld51 = Instance.new("Weld")
- Weld52 = Instance.new("Weld")
- Weld53 = Instance.new("Weld")
- Part54 = Instance.new("Part")
- BlockMesh55 = Instance.new("BlockMesh")
- Weld56 = Instance.new("Weld")
- Weld57 = Instance.new("Weld")
- Weld58 = Instance.new("Weld")
- Part59 = Instance.new("Part")
- BlockMesh60 = Instance.new("BlockMesh")
- Weld61 = Instance.new("Weld")
- Weld62 = Instance.new("Weld")
- Weld63 = Instance.new("Weld")
- Part64 = Instance.new("Part")
- BlockMesh65 = Instance.new("BlockMesh")
- Weld66 = Instance.new("Weld")
- Weld67 = Instance.new("Weld")
- Weld68 = Instance.new("Weld")
- Part69 = Instance.new("Part")
- BlockMesh70 = Instance.new("BlockMesh")
- Weld71 = Instance.new("Weld")
- Weld72 = Instance.new("Weld")
- Weld73 = Instance.new("Weld")
- Part74 = Instance.new("Part")
- BlockMesh75 = Instance.new("BlockMesh")
- Weld76 = Instance.new("Weld")
- Weld77 = Instance.new("Weld")
- Weld78 = Instance.new("Weld")
- Part79 = Instance.new("Part")
- BlockMesh80 = Instance.new("BlockMesh")
- Weld81 = Instance.new("Weld")
- Weld82 = Instance.new("Weld")
- Weld83 = Instance.new("Weld")
- Part84 = Instance.new("Part")
- BlockMesh85 = Instance.new("BlockMesh")
- Weld86 = Instance.new("Weld")
- Weld87 = Instance.new("Weld")
- Weld88 = Instance.new("Weld")
- Part89 = Instance.new("Part")
- BlockMesh90 = Instance.new("BlockMesh")
- Weld91 = Instance.new("Weld")
- Weld92 = Instance.new("Weld")
- Weld93 = Instance.new("Weld")
- Part94 = Instance.new("Part")
- BlockMesh95 = Instance.new("BlockMesh")
- Weld96 = Instance.new("Weld")
- Weld97 = Instance.new("Weld")
- Weld98 = Instance.new("Weld")
- Part99 = Instance.new("Part")
- BlockMesh100 = Instance.new("BlockMesh")
- Weld101 = Instance.new("Weld")
- Weld102 = Instance.new("Weld")
- Weld103 = Instance.new("Weld")
- Part104 = Instance.new("Part")
- BlockMesh105 = Instance.new("BlockMesh")
- Weld106 = Instance.new("Weld")
- Weld107 = Instance.new("Weld")
- Weld108 = Instance.new("Weld")
- Weld109 = Instance.new("Weld")
- Weld110 = Instance.new("Weld")
- Part111 = Instance.new("Part")
- BlockMesh112 = Instance.new("BlockMesh")
- Weld113 = Instance.new("Weld")
- Weld114 = Instance.new("Weld")
- Weld115 = Instance.new("Weld")
- Part116 = Instance.new("Part")
- BlockMesh117 = Instance.new("BlockMesh")
- Weld118 = Instance.new("Weld")
- Weld119 = Instance.new("Weld")
- Weld120 = Instance.new("Weld")
- Part121 = Instance.new("Part")
- BlockMesh122 = Instance.new("BlockMesh")
- Weld123 = Instance.new("Weld")
- Weld124 = Instance.new("Weld")
- Weld125 = Instance.new("Weld")
- Part126 = Instance.new("Part")
- BlockMesh127 = Instance.new("BlockMesh")
- Weld128 = Instance.new("Weld")
- Weld129 = Instance.new("Weld")
- Weld130 = Instance.new("Weld")
- Part131 = Instance.new("Part")
- BlockMesh132 = Instance.new("BlockMesh")
- Weld133 = Instance.new("Weld")
- Weld134 = Instance.new("Weld")
- Weld135 = Instance.new("Weld")
- Part136 = Instance.new("Part")
- BlockMesh137 = Instance.new("BlockMesh")
- Weld138 = Instance.new("Weld")
- Weld139 = Instance.new("Weld")
- Weld140 = Instance.new("Weld")
- Part141 = Instance.new("Part")
- BlockMesh142 = Instance.new("BlockMesh")
- Weld143 = Instance.new("Weld")
- Weld144 = Instance.new("Weld")
- Weld145 = Instance.new("Weld")
- Part146 = Instance.new("Part")
- BlockMesh147 = Instance.new("BlockMesh")
- Weld148 = Instance.new("Weld")
- Weld149 = Instance.new("Weld")
- Weld150 = Instance.new("Weld")
- Part151 = Instance.new("Part")
- BlockMesh152 = Instance.new("BlockMesh")
- Weld153 = Instance.new("Weld")
- Weld154 = Instance.new("Weld")
- Weld155 = Instance.new("Weld")
- Part156 = Instance.new("Part")
- BlockMesh157 = Instance.new("BlockMesh")
- Weld158 = Instance.new("Weld")
- Weld159 = Instance.new("Weld")
- Weld160 = Instance.new("Weld")
- Part161 = Instance.new("Part")
- BlockMesh162 = Instance.new("BlockMesh")
- Weld163 = Instance.new("Weld")
- Weld164 = Instance.new("Weld")
- Weld165 = Instance.new("Weld")
- Part166 = Instance.new("Part")
- BlockMesh167 = Instance.new("BlockMesh")
- Weld168 = Instance.new("Weld")
- Weld169 = Instance.new("Weld")
- Weld170 = Instance.new("Weld")
- Part171 = Instance.new("Part")
- BlockMesh172 = Instance.new("BlockMesh")
- Weld173 = Instance.new("Weld")
- Weld174 = Instance.new("Weld")
- Weld175 = Instance.new("Weld")
- Part176 = Instance.new("Part")
- BlockMesh177 = Instance.new("BlockMesh")
- Weld178 = Instance.new("Weld")
- Weld179 = Instance.new("Weld")
- Weld180 = Instance.new("Weld")
- Part181 = Instance.new("Part")
- BlockMesh182 = Instance.new("BlockMesh")
- Weld183 = Instance.new("Weld")
- Weld184 = Instance.new("Weld")
- Weld185 = Instance.new("Weld")
- Part186 = Instance.new("Part")
- BlockMesh187 = Instance.new("BlockMesh")
- Weld188 = Instance.new("Weld")
- Weld189 = Instance.new("Weld")
- Weld190 = Instance.new("Weld")
- Part191 = Instance.new("Part")
- BlockMesh192 = Instance.new("BlockMesh")
- Weld193 = Instance.new("Weld")
- Weld194 = Instance.new("Weld")
- Weld195 = Instance.new("Weld")
- Part196 = Instance.new("Part")
- BlockMesh197 = Instance.new("BlockMesh")
- Weld198 = Instance.new("Weld")
- Weld199 = Instance.new("Weld")
- Weld200 = Instance.new("Weld")
- Part201 = Instance.new("Part")
- BlockMesh202 = Instance.new("BlockMesh")
- Weld203 = Instance.new("Weld")
- Weld204 = Instance.new("Weld")
- Weld205 = Instance.new("Weld")
- Part206 = Instance.new("Part")
- BlockMesh207 = Instance.new("BlockMesh")
- Weld208 = Instance.new("Weld")
- Weld209 = Instance.new("Weld")
- Weld210 = Instance.new("Weld")
- Part211 = Instance.new("Part")
- BlockMesh212 = Instance.new("BlockMesh")
- Weld213 = Instance.new("Weld")
- Weld214 = Instance.new("Weld")
- Weld215 = Instance.new("Weld")
- Part216 = Instance.new("Part")
- BlockMesh217 = Instance.new("BlockMesh")
- Weld218 = Instance.new("Weld")
- Weld219 = Instance.new("Weld")
- Weld220 = Instance.new("Weld")
- Part221 = Instance.new("Part")
- BlockMesh222 = Instance.new("BlockMesh")
- Weld223 = Instance.new("Weld")
- Weld224 = Instance.new("Weld")
- Weld225 = Instance.new("Weld")
- Part226 = Instance.new("Part")
- BlockMesh227 = Instance.new("BlockMesh")
- Weld228 = Instance.new("Weld")
- Weld229 = Instance.new("Weld")
- Weld230 = Instance.new("Weld")
- Part231 = Instance.new("Part")
- BlockMesh232 = Instance.new("BlockMesh")
- Weld233 = Instance.new("Weld")
- Weld234 = Instance.new("Weld")
- Weld235 = Instance.new("Weld")
- Part236 = Instance.new("Part")
- BlockMesh237 = Instance.new("BlockMesh")
- Weld238 = Instance.new("Weld")
- Weld239 = Instance.new("Weld")
- Weld240 = Instance.new("Weld")
- Part241 = Instance.new("Part")
- BlockMesh242 = Instance.new("BlockMesh")
- Weld243 = Instance.new("Weld")
- Weld244 = Instance.new("Weld")
- Weld245 = Instance.new("Weld")
- Part246 = Instance.new("Part")
- BlockMesh247 = Instance.new("BlockMesh")
- Weld248 = Instance.new("Weld")
- Weld249 = Instance.new("Weld")
- Weld250 = Instance.new("Weld")
- Part251 = Instance.new("Part")
- BlockMesh252 = Instance.new("BlockMesh")
- Weld253 = Instance.new("Weld")
- Weld254 = Instance.new("Weld")
- Weld255 = Instance.new("Weld")
- Part256 = Instance.new("Part")
- BlockMesh257 = Instance.new("BlockMesh")
- Weld258 = Instance.new("Weld")
- Weld259 = Instance.new("Weld")
- Weld260 = Instance.new("Weld")
- Part261 = Instance.new("Part")
- BlockMesh262 = Instance.new("BlockMesh")
- Weld263 = Instance.new("Weld")
- Weld264 = Instance.new("Weld")
- Weld265 = Instance.new("Weld")
- Part266 = Instance.new("Part")
- BlockMesh267 = Instance.new("BlockMesh")
- Weld268 = Instance.new("Weld")
- Weld269 = Instance.new("Weld")
- Weld270 = Instance.new("Weld")
- Part271 = Instance.new("Part")
- BlockMesh272 = Instance.new("BlockMesh")
- Weld273 = Instance.new("Weld")
- Weld274 = Instance.new("Weld")
- Weld275 = Instance.new("Weld")
- Part276 = Instance.new("Part")
- BlockMesh277 = Instance.new("BlockMesh")
- Weld278 = Instance.new("Weld")
- Weld279 = Instance.new("Weld")
- Part280 = Instance.new("Part")
- BlockMesh281 = Instance.new("BlockMesh")
- Weld282 = Instance.new("Weld")
- Weld283 = Instance.new("Weld")
- Weld284 = Instance.new("Weld")
- Weld285 = Instance.new("Weld")
- Part286 = Instance.new("Part")
- BlockMesh287 = Instance.new("BlockMesh")
- Weld288 = Instance.new("Weld")
- Weld289 = Instance.new("Weld")
- Script290 = Instance.new("Script")
- Tool0.Name = "Sword"
- Tool0.Parent = mas
- Tool0.TextureId = "http://www.roblox.com/asset/?id=94746192"
- Tool0.Grip = CFrame.new(0, -1.25, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- Tool0.GripForward = Vector3.new(1, -0, -0)
- Tool0.GripPos = Vector3.new(0, -1.25, 0)
- Tool0.GripRight = Vector3.new(0, 0, 1)
- Tool0.ToolTip = "Fixed And Effective!"
- LocalScript1.Name = "*Slash Animation*"
- LocalScript1.Parent = Tool0
- table.insert(cors,sandbox(LocalScript1,function()
- local Tool = script.Parent;
- local PlaySlash = nil
- enabled = true
- function onActivated()
- if not enabled then
- return
- end
- enabled = false
- local humanoid = Tool.Parent:FindFirstChild("Humanoid")
- local torso = Tool.Parent:FindFirstChild("Torso")
- PlaySlash = humanoid:LoadAnimation(Tool.SlashAnim2)
- Tool.IsCrystal.Value = PlaySlash
- PlaySlash:Play()
- Tool.Handle.SlashSound:Play()
- wait(0.8)
- Tool.Handle.SlashSound:Stop()
- PlaySlash:Stop()
- PlaySlash:remove()
- enabled = true
- end
- function onEquipped()
- end
- function onUnequipped()
- if PlaySlash ~= nil then
- PlaySlash:Stop()
- PlaySlash:remove()
- end
- end
- Tool.Activated:connect(onActivated)
- Tool.Equipped:connect(onEquipped)
- Tool.Unequipped:connect(OnUnequipped)
- end))
- Script2.Name = "UnequipScript"
- Script2.Parent = Tool0
- table.insert(cors,sandbox(Script2,function()
- local Tool = script.Parent
- local humanoid = nil
- function onEquipped()
- humanoid = Tool.Parent:FindFirstChild("Humanoid")
- end
- function onUnequipped()
- if humanoid ~= nil then
- if Tool.DanceObject.Value ~= nil then
- Tool.DanceObject.Value:Stop()
- Tool.DanceObject.Value:remove()
- end
- end
- end
- Tool.Equipped:connect(onEquipped)
- Tool.Unequipped:connect(onUnequipped)
- end))
- ObjectValue3.Name = "IsCrystal"
- ObjectValue3.Parent = Tool0
- LocalScript4.Name = "AnimationScript"
- LocalScript4.Parent = Tool0
- table.insert(cors,sandbox(LocalScript4,function()
- local function WaitForChild(parent, childName)
- while not parent:FindFirstChild(childName) do parent.ChildAdded:wait() end
- return parent[childName]
- end
- local Tool = script.Parent
- local Animations = {}
- local MyHumanoid
- local MyCharacter
- local function PlayAnimation(animationName)
- if Animations[animationName] then
- Animations[animationName]:Play()
- end
- end
- local function StopAnimation(animationName)
- if Animations[animationName] then
- Animations[animationName]:Stop()
- end
- end
- function OnEquipped(mouse)
- MyCharacter = Tool.Parent
- MyHumanoid = WaitForChild(MyCharacter,'Humanoid')
- if MyHumanoid then
- Animations['EquipAnim'] = MyHumanoid:LoadAnimation(WaitForChild(Tool,'EquipAnim5'))
- Animations['IdleAnim'] = MyHumanoid:LoadAnimation(WaitForChild(Tool,'IdleAnim3'))
- Animations['OverheadAnim'] = MyHumanoid:LoadAnimation(WaitForChild(Tool,'OverheadAnim2'))
- Animations['SlashAnim'] = MyHumanoid:LoadAnimation(WaitForChild(Tool,'SlashAnim2'))
- Animations['ThrustAnim'] = MyHumanoid:LoadAnimation(WaitForChild(Tool,'ThrustAnim2'))
- Animations['UnequipAnim'] = MyHumanoid:LoadAnimation(WaitForChild(Tool,'UnequipAnim2'))
- end
- PlayAnimation('EquipAnim')
- PlayAnimation('IdleAnim')
- end
- function OnUnequipped()
- for animName, _ in pairs(Animations) do
- StopAnimation(animName)
- end
- end
- Tool.Equipped:connect(OnEquipped)
- Tool.Unequipped:connect(OnUnequipped)
- WaitForChild(Tool,'PlaySlash').Changed:connect(
- function (value)
- PlayAnimation('SlashAnim')
- end)
- WaitForChild(Tool,'PlayThrust').Changed:connect(
- function (value)
- PlayAnimation('ThrustAnim')
- end)
- WaitForChild(Tool, 'PlayOverhead').Changed:connect(
- function (value)
- PlayAnimation('OverheadAnim')
- end)
- end))
- LocalScript5.Name = "Local Gui"
- LocalScript5.Parent = Tool0
- table.insert(cors,sandbox(LocalScript5,function()
- local Tool = script.Parent;
- enabled = true
- function onButton1Down(mouse)
- if not enabled then
- return
- end
- enabled = false
- mouse.Icon = "rbxasset://textures\\GunWaitCursor.png"
- while not Tool.Enabled do
- wait(0.5)
- end
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- enabled = true
- end
- function onEquippedLocal(mouse)
- if mouse == nil then
- print("Mouse not found")
- return
- end
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- end
- Tool.Equipped:connect(onEquippedLocal)
- end))
- Script6.Name = "SwordScript"
- Script6.Parent = Tool0
- table.insert(cors,sandbox(Script6,function()
- --31
- r = game:service("RunService")
- local damage = 2
- local slash_damage = 10
- local lunge_damage = 30
- sword = script.Parent.Handle
- Tool = script.Parent
- local UnsheathSound = Instance.new("Sound")
- UnsheathSound.SoundId = "rbxasset://souv"
- UnsheathSound.Parent = sword
- UnsheathSound.Volume = 1
- function blow(hit)
- local humanoid = hit.Parent:findFirstChild("Humanoid")
- local vCharacter = Tool.Parent
- local vPlayer = game.Players:playerFromCharacter(vCharacter)
- local hum = vCharacter:findFirstChild("Humanoid")
- if humanoid~=nil and humanoid ~= hum and hum ~= nil then
- local right_arm = vCharacter:FindFirstChild("Right Arm")
- if(right_arm ~= nil) then
- local joint = right_arm:FindFirstChild("RightGrip")
- if (joint ~= nil and (joint.Part0 == sword or joint.Part1 == sword)) then
- tagHumanoid(humanoid, vPlayer)
- humanoid:TakeDamage(damage)
- wait(1)
- untagHumanoid(humanoid)
- end
- end
- end
- end
- function tagHumanoid(humanoid, player)
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = player
- creator_tag.Name = "creator"
- creator_tag.Parent = humanoid
- end
- function untagHumanoid(humanoid)
- if humanoid ~= nil then
- local tag = humanoid:findFirstChild("creator")
- if tag ~= nil then
- tag.Parent = nil
- end
- end
- end
- function attack()
- damage = slash_damage
- SlashSound:play()
- local anim = Instance.new("StringValue")
- anim.Name = "toolanim"
- anim.Value = "Slash"
- anim.Parent = Tool
- end
- function lunge()
- damage = lunge_damage
- LungeSound:play()
- local anim = Instance.new("StringValue")
- anim.Name = "toolanim"
- anim.Value = "Lunge"
- anim.Parent = Tool
- force = Instance.new("BodyVelocity")
- force.velocity = Vector3.new(0,10,0)
- wait(.2)
- swordOut()
- wait(.2)
- force.Parent = nil
- wait(.4)
- swordUp()
- damage = slash_damage
- end
- function swordUp()
- Tool.GripForward = Vector3.new(1, 0, 0)
- Tool.GripPos = Vector3.new(0, -1.25 ,0)
- Tool.GripRight = Vector3.new(0, 0, 1)
- Tool.GripUp = Vector3.new(0, 1, 0)
- end
- function swordOut()
- Tool.GripForward = Vector3.new(1, 0, 0)
- Tool.GripPos = Vector3.new(0, -1.25 ,0)
- Tool.GripRight = Vector3.new(0, 0, 1)
- Tool.GripUp = Vector3.new(0, 1, 0)
- end
- function swordAcross()
- end
- Tool.Enabled = true
- local last_attack = 0
- function onActivated()
- if not Tool.Enabled then
- return
- end
- Tool.Enabled = false
- local character = Tool.Parent;
- local humanoid = character.Humanoid
- if humanoid == nil then
- print("Humanoid not found")
- return
- end
- t = r.Stepped:wait()
- if (t - last_attack < .2) then
- lunge()
- else
- attack()
- end
- last_attack = t
- Tool.Enabled = true
- end
- function onEquipped()
- UnsheathSound:play()
- end
- script.Parent.Activated:connect(onActivated)
- script.Parent.Equipped:connect(onEquipped)
- connection = sword.Touched:connect(blow)
- end))
- BoolValue7.Name = "PlayThrust"
- BoolValue7.Parent = Tool0
- BoolValue8.Name = "PlaySlash"
- BoolValue8.Parent = Tool0
- BoolValue9.Name = "PlayOverhead"
- BoolValue9.Parent = Tool0
- SpecialMesh10.Parent = Tool0
- SpecialMesh10.MeshId = "http://www.roblox.com/asset/?id=94746028"
- SpecialMesh10.TextureId = "http://www.roblox.com/asset/?id=94746105"
- SpecialMesh10.MeshType = Enum.MeshType.FileMesh
- Animation11.Name = "EquipAnim5"
- Animation11.Parent = Tool0
- Animation11.AnimationId = "rbxassetid://4194367922"
- Animation12.Name = "IdleAnim3"
- Animation12.Parent = Tool0
- Animation12.AnimationId = "http://www.roblox.com/Asset?ID=94108418"
- Animation13.Name = "OverheadAnim2"
- Animation13.Parent = Tool0
- Animation13.AnimationId = "http://www.roblox.com/Asset?ID=94160738"
- Animation14.Name = "SlashAnim2"
- Animation14.Parent = Tool0
- Animation14.AnimationId = "rbxassetid://4194367922"
- Animation15.Name = "ThrustAnim2"
- Animation15.Parent = Tool0
- Animation15.AnimationId = "rbxassetid://4194367922"
- Animation16.Name = "UnequipAnim2"
- Animation16.Parent = Tool0
- Animation16.AnimationId = "rbxassetid://4194367922"
- Script17.Name = "*Fixed* PulloutSound*"
- Script17.Parent = Tool0
- table.insert(cors,sandbox(Script17,function()
- local Tool = script.Parent;
- enabled = true
- function onActivated()
- if not enabled then
- return
- end
- enabled = false
- local h = Tool.Parent:FindFirstChild("Humanoid")
- if (h ~= nil) then
- if (h.MaxHealth > h.Health + 0) then
- h.Health = h.Health + 0
- else
- h.Health = h.MaxHealth
- end
- end
- enabled = true
- end
- function onEquipped()
- Wait(0.7)
- Tool.Handle.UnsheathSound:play()
- end
- script.Parent.Activated:connect(onActivated)
- script.Parent.Equipped:connect(onEquipped)
- end))
- Camera18.Name = "ThumbnailCamera"
- Camera18.Parent = Tool0
- Camera18.CFrame = CFrame.new(-2.20982599, 5.44144058, 11.0201197, -0.677345276, 0.718778431, -0.156719744, -0, 0.213031322, 0.977045417, 0.735665321, 0.661797106, -0.144295737)
- Camera18.CoordinateFrame = CFrame.new(-2.20982599, 5.44144058, 11.0201197, -0.677345276, 0.718778431, -0.156719744, -0, 0.213031322, 0.977045417, 0.735665321, 0.661797106, -0.144295737)
- Camera18.FieldOfView = 20
- Camera18.Focus = CFrame.new(-1.89638662, 3.48735046, 11.3087111, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- Camera18.focus = CFrame.new(-1.89638662, 3.48735046, 11.3087111, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- Part19.Name = "Handle"
- Part19.Parent = Tool0
- Part19.CFrame = CFrame.new(-1.95800006, 1.0200001, 10.8440008, -0.859278798, -0.473667324, 0.193079948, -0.219235122, 2.67841847e-06, -0.975671887, 0.462143332, -0.880703807, -0.103846751)
- Part19.Orientation = Vector3.new(77.3399963, 118.269997, -90)
- Part19.Position = Vector3.new(-1.95800006, 1.0200001, 10.8440008)
- Part19.Rotation = Vector3.new(96.0800018, 11.1300001, 151.130005)
- Part19.Color = Color3.new(0.388235, 0.372549, 0.384314)
- Part19.Transparency = 345
- Part19.Size = Vector3.new(0.600000024, 3.60000038, 0.400000036)
- Part19.BottomSurface = Enum.SurfaceType.Smooth
- Part19.BrickColor = BrickColor.new("Dark stone grey")
- Part19.Reflectance = 1
- Part19.TopSurface = Enum.SurfaceType.Smooth
- Part19.brickColor = BrickColor.new("Dark stone grey")
- Part19.FormFactor = Enum.FormFactor.Custom
- Part19.formFactor = Enum.FormFactor.Custom
- Sound20.Name = "HitSound"
- Sound20.Parent = Part19
- Sound20.SoundId = "rbxassetid://535681058"
- Sound21.Name = "OverheadSound"
- Sound21.Parent = Part19
- Sound21.Pitch = 1.1699999570847
- Sound21.PlaybackSpeed = 1.1699999570847
- Sound21.SoundId = "rbxassetid://535681058"
- Sound22.Name = "SlashSound"
- Sound22.Parent = Part19
- Sound22.SoundId = "rbxassetid://535681058"
- Sound22.Volume = 0.34999999403954
- Sound23.Name = "UnsheathSound"
- Sound23.Parent = Part19
- Sound23.Pitch = 1.2999999523163
- Sound23.PlaybackSpeed = 1.2999999523163
- Sound23.SoundId = "rbxassetid://535681058"
- Sound23.Volume = 0.28000000119209
- Sound24.Name = "LungeSound"
- Sound24.Parent = Part19
- Sound24.Pitch = 0.80000001192093
- Sound24.PlaybackSpeed = 0.80000001192093
- Sound24.SoundId = "rbxassetid://535681058"
- Sound24.Volume = 0.25
- Part25.Parent = Part19
- Part25.CFrame = CFrame.new(-2.34537125, 1.12026739, 9.82306099, -0.845420837, -7.00583769e-05, -0.534112334, -2.20054408e-05, -1, 0.000165999983, -0.534111321, 0.000152092427, 0.84541446)
- Part25.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part25.Position = Vector3.new(-2.34537125, 1.12026739, 9.82306099)
- Part25.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part25.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part25.Velocity = Vector3.new(0.00496789068, -0.00969752017, 0.00241937418)
- Part25.Size = Vector3.new(1, 1, 1)
- Part25.BackSurface = Enum.SurfaceType.Weld
- Part25.BottomSurface = Enum.SurfaceType.Weld
- Part25.BrickColor = BrickColor.new("Black")
- Part25.CanCollide = false
- Part25.FrontSurface = Enum.SurfaceType.Weld
- Part25.LeftSurface = Enum.SurfaceType.Weld
- Part25.Reflectance = 0.40000000596046
- Part25.RightSurface = Enum.SurfaceType.Weld
- Part25.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part25.TopSurface = Enum.SurfaceType.Weld
- Part25.brickColor = BrickColor.new("Black")
- Part25.FormFactor = Enum.FormFactor.Symmetric
- Part25.formFactor = Enum.FormFactor.Symmetric
- BlockMesh26.Parent = Part25
- BlockMesh26.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld27.Parent = Part25
- Weld27.C0 = CFrame.new(-31.4987259, -0.899998665, 40.100544, 9.32303283e-06, 1.67782658e-15, -1, 3.63684166e-10, 1, 5.06846601e-15, 1, -3.63684166e-10, 9.32303283e-06)
- Weld27.C1 = CFrame.new(-29.8987179, -0.899998665, 39.1005249, 9.22980416e-06, 1.64425962e-15, -1, 3.60046187e-10, 1, 4.9674154e-15, 1, -3.60046187e-10, 9.22980416e-06)
- Weld27.Part0 = Part25
- Weld27.Part1 = Part30
- Weld27.part1 = Part30
- Weld28.Parent = Part25
- Weld28.C0 = CFrame.new(-31.4987259, -0.899998665, 40.100544, 9.32303283e-06, 1.67782658e-15, -1, 3.63684166e-10, 1, 5.06846601e-15, 1, -3.63684166e-10, 9.32303283e-06)
- Weld28.C1 = CFrame.new(-29.8987179, -0.899998665, 39.1005249, 9.22980416e-06, 1.64425962e-15, -1, 3.60046187e-10, 1, 4.9674154e-15, 1, -3.60046187e-10, 9.22980416e-06)
- Weld28.Part0 = Part25
- Weld28.Part1 = Part30
- Weld28.part1 = Part30
- Weld29.Parent = Part25
- Weld29.C0 = CFrame.new(25.8709049, 0.888669133, -59.1754532, 0.835119128, 4.95344793e-05, -0.550070643, 1.76351987e-05, -1, -6.32772935e-05, -0.55006969, 4.31434455e-05, -0.83511889)
- Weld29.C1 = CFrame.new(27.4708996, 0.888669133, -60.175457, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld29.Part0 = Part25
- Weld29.Part1 = Part30
- Weld29.part1 = Part30
- Part30.Parent = Part19
- Part30.CFrame = CFrame.new(-1.52682042, 1.12046862, 11.523056, -0.845422566, -7.00583842e-05, -0.534113109, -2.20053753e-05, -1, 0.000165999969, -0.534111738, 0.000152092442, 0.845414221)
- Part30.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part30.Position = Vector3.new(-1.52682042, 1.12046862, 11.523056)
- Part30.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part30.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part30.Velocity = Vector3.new(0.00100887334, -0.0125825908, 0.0043259901)
- Part30.Size = Vector3.new(1, 1, 1)
- Part30.BackSurface = Enum.SurfaceType.Weld
- Part30.BottomSurface = Enum.SurfaceType.Weld
- Part30.BrickColor = BrickColor.new("Black")
- Part30.CanCollide = false
- Part30.FrontSurface = Enum.SurfaceType.Weld
- Part30.LeftSurface = Enum.SurfaceType.Weld
- Part30.Reflectance = 0.40000000596046
- Part30.RightSurface = Enum.SurfaceType.Weld
- Part30.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part30.TopSurface = Enum.SurfaceType.Weld
- Part30.brickColor = BrickColor.new("Black")
- Part30.FormFactor = Enum.FormFactor.Symmetric
- Part30.formFactor = Enum.FormFactor.Symmetric
- BlockMesh31.Parent = Part30
- BlockMesh31.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld32.Parent = Part30
- Weld32.C0 = CFrame.new(26.5209465, 0.896675944, 46.4987793, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld32.C1 = CFrame.new(25.5209484, 0.896675885, 46.8987808, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld32.Part0 = Part30
- Weld32.Part1 = Part146
- Weld32.part1 = Part146
- Weld33.Parent = Part30
- Weld33.C0 = CFrame.new(-29.8987179, -0.899998665, 39.1005249, 9.22980416e-06, 1.64425962e-15, -1, 3.60046187e-10, 1, 4.9674154e-15, 1, -3.60046187e-10, 9.22980416e-06)
- Weld33.C1 = CFrame.new(-30.8989697, -0.899998784, 39.5003967, 7.36521861e-06, 1.04414588e-15, -1, 2.87286611e-10, 1, 3.16007452e-15, 1, -2.87286583e-10, 7.36521815e-06)
- Weld33.Part0 = Part30
- Weld33.Part1 = Part146
- Weld33.part1 = Part146
- Weld34.Parent = Part30
- Weld34.C0 = CFrame.new(27.4708996, 0.888669133, -60.175457, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld34.C1 = CFrame.new(26.4709587, 0.888669312, -59.7754364, 0.835119426, 4.9534483e-05, -0.550070643, 1.76352023e-05, -1, -6.32772935e-05, -0.550069451, 4.31434455e-05, -0.835119128)
- Weld34.Part0 = Part30
- Weld34.Part1 = Part146
- Weld34.part1 = Part146
- Part35.Parent = Part19
- Part35.CFrame = CFrame.new(-1.25539327, 1.12058389, 12.4042063, -0.845426917, -7.00584205e-05, -0.534115136, -2.20052316e-05, -1, 0.000165999969, -0.53411293, 0.000152092514, 0.845413864)
- Part35.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part35.Position = Vector3.new(-1.25539327, 1.12058389, 12.4042063)
- Part35.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part35.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part35.Velocity = Vector3.new(-0.00104321423, -0.0144819701, 0.00495835813)
- Part35.Size = Vector3.new(1, 1, 1)
- Part35.BackSurface = Enum.SurfaceType.Weld
- Part35.BottomSurface = Enum.SurfaceType.Weld
- Part35.BrickColor = BrickColor.new("Black")
- Part35.CanCollide = false
- Part35.FrontSurface = Enum.SurfaceType.Weld
- Part35.LeftSurface = Enum.SurfaceType.Weld
- Part35.Reflectance = 0.40000000596046
- Part35.RightSurface = Enum.SurfaceType.Weld
- Part35.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part35.TopSurface = Enum.SurfaceType.Weld
- Part35.brickColor = BrickColor.new("Black")
- Part35.FormFactor = Enum.FormFactor.Symmetric
- Part35.formFactor = Enum.FormFactor.Symmetric
- BlockMesh36.Parent = Part35
- BlockMesh36.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld37.Parent = Part35
- Weld37.C0 = CFrame.new(47, -0.900000215, -17.5, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld37.C1 = CFrame.new(45.2999992, -0.900000215, -15.7000008, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld37.Part0 = Part35
- Weld37.Part1 = Part116
- Weld37.part1 = Part116
- Weld38.Parent = Part35
- Weld38.C0 = CFrame.new(-29.1983509, -0.899998546, 38.5006828, 1.18402158e-05, 2.71233333e-15, -1, 4.61909594e-10, 1, 8.18144211e-15, 1, -4.61909622e-10, 1.18402168e-05)
- Weld38.C1 = CFrame.new(-30.8983574, -0.899998546, 40.3006744, 1.18402158e-05, 2.71233333e-15, -1, 4.61909594e-10, 1, 8.18144211e-15, 1, -4.61909622e-10, 1.18402168e-05)
- Weld38.Part0 = Part35
- Weld38.Part1 = Part116
- Weld38.part1 = Part116
- Weld39.Parent = Part35
- Weld39.C0 = CFrame.new(28.1709976, 0.888669372, -60.7754173, 0.835119605, 4.95344939e-05, -0.550070763, 1.76352023e-05, -1, -6.32772935e-05, -0.550069332, 4.31434455e-05, -0.835119247)
- Weld39.C1 = CFrame.new(26.4709911, 0.888669372, -58.9754181, 0.835119605, 4.95344939e-05, -0.550070763, 1.76352023e-05, -1, -6.32772935e-05, -0.550069332, 4.31434455e-05, -0.835119247)
- Weld39.Part0 = Part35
- Weld39.Part1 = Part116
- Weld39.part1 = Part116
- Part40.Parent = Part19
- Part40.CFrame = CFrame.new(-1.63814247, 1.12064552, 12.6354923, -0.845445514, -7.0058617e-05, -0.534122109, -2.20043876e-05, -1, 0.000165999969, -0.53411603, 0.000152092762, 0.84541285)
- Part40.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part40.Position = Vector3.new(-1.63814247, 1.12064552, 12.6354923)
- Part40.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part40.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part40.Velocity = Vector3.new(-0.00158193288, -0.0161804147, 0.00406729942)
- Part40.Size = Vector3.new(1, 1, 1)
- Part40.BackSurface = Enum.SurfaceType.Weld
- Part40.BottomSurface = Enum.SurfaceType.Weld
- Part40.BrickColor = BrickColor.new("Black")
- Part40.CanCollide = false
- Part40.FrontSurface = Enum.SurfaceType.Weld
- Part40.LeftSurface = Enum.SurfaceType.Weld
- Part40.Reflectance = 0.40000000596046
- Part40.RightSurface = Enum.SurfaceType.Weld
- Part40.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part40.TopSurface = Enum.SurfaceType.Weld
- Part40.brickColor = BrickColor.new("Black")
- Part40.FormFactor = Enum.FormFactor.Symmetric
- Part40.formFactor = Enum.FormFactor.Symmetric
- BlockMesh41.Parent = Part40
- BlockMesh41.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld42.Parent = Part40
- Weld42.C0 = CFrame.new(27.0209503, 0.896676004, 45.4987869, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld42.C1 = CFrame.new(-47.2987862, 0.896675944, 26.8209515, -0.737820268, -6.03402877e-05, -0.674997211, 1.73667831e-06, -1, 8.74950783e-05, -0.674997211, 6.33833988e-05, 0.737820387)
- Weld42.Part0 = Part40
- Weld42.Part1 = Part94
- Weld42.part1 = Part94
- Weld43.Parent = Part40
- Weld43.C0 = CFrame.new(-29.3975163, -0.89999783, 38.1010437, 1.81797259e-05, 6.41321679e-15, -1, 7.09292125e-10, 1, 1.93079534e-14, 1, -7.09292125e-10, 1.81797259e-05)
- Weld43.C1 = CFrame.new(-39.8999634, -0.899998069, -29.5989113, -1, -7.05654368e-10, 1.80873485e-05, -7.05654368e-10, 1, 1.91770495e-14, -1.80873485e-05, 6.41363141e-15, -1)
- Weld43.Part0 = Part40
- Weld43.Part1 = Part94
- Weld43.part1 = Part94
- Weld44.Parent = Part40
- Weld44.C0 = CFrame.new(27.9708996, 0.888669074, -61.1754608, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld44.C1 = CFrame.new(59.3754044, 0.888669074, 27.7709389, 0.550069869, -4.31434455e-05, 0.835118711, 1.76352005e-05, -1, -6.32772935e-05, 0.83511883, 4.95344539e-05, -0.550070345)
- Weld44.Part0 = Part40
- Weld44.Part1 = Part94
- Weld44.part1 = Part94
- Part45.Parent = Part19
- Part45.CFrame = CFrame.new(-2.40765166, 1.12022984, 9.54714298, -0.845418274, -7.00583623e-05, -0.5341115, -2.20055717e-05, -1, 0.000165999983, -0.534110844, 0.000152092383, 0.845414579)
- Part45.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part45.Position = Vector3.new(-2.40765166, 1.12022984, 9.54714298)
- Part45.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part45.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part45.Velocity = Vector3.new(0.00561047252, -0.00904273242, 0.00227424083)
- Part45.Size = Vector3.new(1, 1, 1)
- Part45.BackSurface = Enum.SurfaceType.Weld
- Part45.BottomSurface = Enum.SurfaceType.Weld
- Part45.BrickColor = BrickColor.new("Black")
- Part45.CanCollide = false
- Part45.FrontSurface = Enum.SurfaceType.Weld
- Part45.LeftSurface = Enum.SurfaceType.Weld
- Part45.Reflectance = 0.40000000596046
- Part45.RightSurface = Enum.SurfaceType.Weld
- Part45.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part45.TopSurface = Enum.SurfaceType.Weld
- Part45.brickColor = BrickColor.new("Black")
- Part45.FormFactor = Enum.FormFactor.Symmetric
- Part45.formFactor = Enum.FormFactor.Symmetric
- BlockMesh46.Parent = Part45
- BlockMesh46.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld47.Parent = Part45
- Weld47.C0 = CFrame.new(-31.6998138, -0.899999499, 40.2999573, 3.54281497e-06, 2.3803746e-16, -1.00000882, 1.38129494e-10, 1, -2.38440225e-16, 0.999999762, 1.38129508e-10, -3.54281337e-06)
- Weld47.C1 = CFrame.new(-30.4999142, -0.899999499, 39.8999825, 1.11877966e-06, 2.22583384e-17, -1.00000262, 4.35420554e-11, 1, -2.23855207e-17, 0.999999762, 4.35420588e-11, -1.11877966e-06)
- Weld47.Part0 = Part45
- Weld47.Part1 = Part171
- Weld47.part1 = Part171
- Weld48.Parent = Part45
- Weld48.C0 = CFrame.new(25.6708946, 0.888669133, -58.9754601, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld48.C1 = CFrame.new(26.8709641, 0.888669312, -59.3754349, 0.835119426, 4.9534483e-05, -0.550070643, 1.76352023e-05, -1, -6.32772935e-05, -0.550069451, 4.31434455e-05, -0.835119128)
- Weld48.Part0 = Part45
- Weld48.Part1 = Part171
- Weld48.part1 = Part171
- Part49.Parent = Part19
- Part49.CFrame = CFrame.new(-2.4699018, 1.12019229, 9.27124882, -0.845434844, -7.00585006e-05, -0.534117937, -2.20048369e-05, -1, 0.000165999998, -0.534114242, 0.000152092631, 0.845413566)
- Part49.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part49.Position = Vector3.new(-2.4699018, 1.12019229, 9.27124882)
- Part49.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part49.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part49.Velocity = Vector3.new(0.00625299895, -0.00838793349, 0.00212917849)
- Part49.Size = Vector3.new(1, 1, 1)
- Part49.BackSurface = Enum.SurfaceType.Weld
- Part49.BottomSurface = Enum.SurfaceType.Weld
- Part49.BrickColor = BrickColor.new("Black")
- Part49.CanCollide = false
- Part49.FrontSurface = Enum.SurfaceType.Weld
- Part49.LeftSurface = Enum.SurfaceType.Weld
- Part49.Reflectance = 0.40000000596046
- Part49.RightSurface = Enum.SurfaceType.Weld
- Part49.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part49.TopSurface = Enum.SurfaceType.Weld
- Part49.brickColor = BrickColor.new("Black")
- Part49.FormFactor = Enum.FormFactor.Symmetric
- Part49.formFactor = Enum.FormFactor.Symmetric
- BlockMesh50.Parent = Part49
- BlockMesh50.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld51.Parent = Part49
- Weld51.C0 = CFrame.new(-31.8983898, -0.899998426, 40.5006638, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld51.C1 = CFrame.new(-31.0983562, -0.899998426, 40.5006714, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld51.Part0 = Part49
- Weld51.Part1 = Part181
- Weld51.part1 = Part181
- Weld52.Parent = Part49
- Weld52.C0 = CFrame.new(-31.8983898, -0.899998426, 40.5006638, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld52.C1 = CFrame.new(-31.0983562, -0.899998426, 40.5006714, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld52.Part0 = Part49
- Weld52.Part1 = Part181
- Weld52.part1 = Part181
- Weld53.Parent = Part49
- Weld53.C0 = CFrame.new(25.4708881, 0.888669133, -58.7754593, 0.835119009, 4.95344648e-05, -0.550070465, 1.76352005e-05, -1, -6.32772935e-05, -0.550069749, 4.31434455e-05, -0.83511883)
- Weld53.C1 = CFrame.new(26.2709103, 0.888669133, -58.7754517, 0.835119128, 4.95344793e-05, -0.550070643, 1.76351987e-05, -1, -6.32772935e-05, -0.55006969, 4.31434455e-05, -0.83511889)
- Weld53.Part0 = Part49
- Weld53.Part1 = Part181
- Weld53.part1 = Part181
- Part54.Parent = Part19
- Part54.CFrame = CFrame.new(-1.91808081, 1.12013471, 9.1467371, -0.845431864, -7.00584787e-05, -0.534116745, -2.20049787e-05, -1, 0.000165999983, -0.534113646, 0.000152092602, 0.845413804)
- Part54.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part54.Position = Vector3.new(-1.91808081, 1.12013471, 9.1467371)
- Part54.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part54.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part54.Velocity = Vector3.new(0.00654308032, -0.00655972352, 0.00341393799)
- Part54.Size = Vector3.new(1, 1, 1)
- Part54.BackSurface = Enum.SurfaceType.Weld
- Part54.BottomSurface = Enum.SurfaceType.Weld
- Part54.BrickColor = BrickColor.new("Black")
- Part54.CanCollide = false
- Part54.FrontSurface = Enum.SurfaceType.Weld
- Part54.LeftSurface = Enum.SurfaceType.Weld
- Part54.Reflectance = 0.40000000596046
- Part54.RightSurface = Enum.SurfaceType.Weld
- Part54.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part54.TopSurface = Enum.SurfaceType.Weld
- Part54.brickColor = BrickColor.new("Black")
- Part54.FormFactor = Enum.FormFactor.Symmetric
- Part54.formFactor = Enum.FormFactor.Symmetric
- BlockMesh55.Parent = Part54
- BlockMesh55.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld56.Parent = Part54
- Weld56.C0 = CFrame.new(-31.4983597, -0.899998426, 40.9006691, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld56.C1 = CFrame.new(41.0999222, -0.899998426, 31.899332, 1, 4.58271754e-10, -1.17473483e-05, -4.58271782e-10, 1, 8.09593075e-15, 1.17473473e-05, -2.7124534e-15, 1)
- Weld56.Part0 = Part54
- Weld56.Part1 = Part69
- Weld56.part1 = Part69
- Weld57.Parent = Part54
- Weld57.C0 = CFrame.new(-31.4983597, -0.899998426, 40.9006691, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld57.C1 = CFrame.new(41.0999222, -0.899998426, 31.899332, 1, 4.58271754e-10, -1.17473483e-05, -4.58271782e-10, 1, 8.09593075e-15, 1.17473473e-05, -2.7124534e-15, 1)
- Weld57.Part0 = Part54
- Weld57.Part1 = Part69
- Weld57.part1 = Part69
- Weld58.Parent = Part54
- Weld58.C0 = CFrame.new(25.8708935, 0.888669133, -58.3754578, 0.835119009, 4.95344648e-05, -0.550070465, 1.76352005e-05, -1, -6.32772935e-05, -0.550069749, 4.31434455e-05, -0.83511883)
- Weld58.C1 = CFrame.new(-58.1754532, 0.888669252, -25.4708996, -0.55006969, 4.31434455e-05, -0.83511889, 1.76351987e-05, -1, -6.32772935e-05, -0.835119128, -4.95344793e-05, 0.550070643)
- Weld58.Part0 = Part54
- Weld58.Part1 = Part69
- Weld58.part1 = Part69
- Part59.Parent = Part19
- Part59.CFrame = CFrame.new(-1.33108509, 1.12063551, 12.7111769, 0.534122765, -7.00586315e-05, -0.845447302, -0.000165999969, -1, -2.20043112e-05, -0.845412672, 0.000152092791, -0.534116387)
- Part59.Orientation = Vector3.new(0, -122.279999, -179.990005)
- Part59.Position = Vector3.new(-1.33108509, 1.12063551, 12.7111769)
- Part59.Rotation = Vector3.new(180, -57.7200012, 0.00999999978)
- Part59.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part59.Velocity = Vector3.new(-0.00175813993, -0.0155936312, 0.00478226133)
- Part59.Size = Vector3.new(1, 1, 1)
- Part59.BackSurface = Enum.SurfaceType.Weld
- Part59.BottomSurface = Enum.SurfaceType.Weld
- Part59.BrickColor = BrickColor.new("Black")
- Part59.CanCollide = false
- Part59.FrontSurface = Enum.SurfaceType.Weld
- Part59.LeftSurface = Enum.SurfaceType.Weld
- Part59.Reflectance = 0.40000000596046
- Part59.RightSurface = Enum.SurfaceType.Weld
- Part59.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part59.TopSurface = Enum.SurfaceType.Weld
- Part59.brickColor = BrickColor.new("Black")
- Part59.FormFactor = Enum.FormFactor.Symmetric
- Part59.formFactor = Enum.FormFactor.Symmetric
- BlockMesh60.Parent = Part59
- BlockMesh60.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld61.Parent = Part59
- Weld61.C0 = CFrame.new(17.7999992, -0.900000215, 47.1000023, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- Weld61.C1 = CFrame.new(46.8000031, -0.900000215, -17.9000015, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld61.Part0 = Part59
- Weld61.Part1 = Part40
- Weld61.part1 = Part40
- Weld62.Parent = Part59
- Weld62.C0 = CFrame.new(-38.1999855, -0.89999783, -29.0988884, -1, -7.12930326e-10, 1.82738204e-05, -7.12930326e-10, 1, 1.95741962e-14, -1.82738222e-05, 6.54623399e-15, -1)
- Weld62.C1 = CFrame.new(-29.3975163, -0.89999783, 38.1010437, 1.81797259e-05, 6.41321679e-15, -1, 7.09292125e-10, 1, 1.93079534e-14, 1, -7.09292125e-10, 1.81797259e-05)
- Weld62.Part0 = Part59
- Weld62.Part1 = Part40
- Weld62.part1 = Part40
- Weld63.Parent = Part59
- Weld63.C0 = CFrame.new(61.0754547, 0.888669074, 28.2708988, 0.55006963, -4.31434455e-05, 0.835118949, 1.76352005e-05, -1, -6.32772935e-05, 0.835119188, 4.95344757e-05, -0.550070584)
- Weld63.C1 = CFrame.new(27.9708996, 0.888669074, -61.1754608, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld63.Part0 = Part59
- Weld63.Part1 = Part40
- Weld63.part1 = Part40
- Part64.Parent = Part19
- Part64.CFrame = CFrame.new(-2.09627914, 1.12041783, 10.9266424, -0.845425785, -7.00584205e-05, -0.534114182, -2.20052061e-05, -1, 0.000165999998, -0.534112215, 0.000152092514, 0.845414221)
- Part64.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part64.Position = Vector3.new(-2.09627914, 1.12041783, 10.9266424)
- Part64.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part64.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part64.Velocity = Vector3.new(0.00239777286, -0.012316484, 0.00299983891)
- Part64.Size = Vector3.new(1, 1, 1)
- Part64.BackSurface = Enum.SurfaceType.Weld
- Part64.BottomSurface = Enum.SurfaceType.Weld
- Part64.BrickColor = BrickColor.new("Black")
- Part64.CanCollide = false
- Part64.FrontSurface = Enum.SurfaceType.Weld
- Part64.LeftSurface = Enum.SurfaceType.Weld
- Part64.Reflectance = 0.40000000596046
- Part64.RightSurface = Enum.SurfaceType.Weld
- Part64.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part64.TopSurface = Enum.SurfaceType.Weld
- Part64.brickColor = BrickColor.new("Black")
- Part64.FormFactor = Enum.FormFactor.Symmetric
- Part64.formFactor = Enum.FormFactor.Symmetric
- BlockMesh65.Parent = Part64
- BlockMesh65.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld66.Parent = Part64
- Weld66.C0 = CFrame.new(25.7209473, 0.896675944, 46.6987839, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld66.C1 = CFrame.new(27.2209473, 0.896675944, 45.8987846, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld66.Part0 = Part64
- Weld66.Part1 = Part35
- Weld66.part1 = Part35
- Weld67.Parent = Part64
- Weld67.C0 = CFrame.new(-30.6987534, -0.899998784, 39.3005295, 9.1365755e-06, 1.61103189e-15, -1, 3.56408209e-10, 1, 4.86738208e-15, 1, -3.56408209e-10, 9.1365755e-06)
- Weld67.C1 = CFrame.new(-29.1983509, -0.899998546, 38.5006828, 1.18402158e-05, 2.71233333e-15, -1, 4.61909594e-10, 1, 8.18144211e-15, 1, -4.61909622e-10, 1.18402168e-05)
- Weld67.Part0 = Part64
- Weld67.Part1 = Part35
- Weld67.part1 = Part35
- Weld68.Parent = Part64
- Weld68.C0 = CFrame.new(26.6709042, 0.888669133, -59.9754028, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld68.C1 = CFrame.new(28.1709976, 0.888669372, -60.7754173, 0.835119605, 4.95344939e-05, -0.550070763, 1.76352023e-05, -1, -6.32772935e-05, -0.550069332, 4.31434455e-05, -0.835119247)
- Weld68.Part0 = Part64
- Weld68.Part1 = Part35
- Weld68.part1 = Part35
- Part69.Parent = Part19
- Part69.CFrame = CFrame.new(-2.14942098, 1.12009287, 8.76400948, -0.534117341, -7.00584933e-05, 0.845433354, 0.000165999983, -1, 2.20049078e-05, 0.845413685, 0.000152092616, 0.534113944)
- Part69.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part69.Position = Vector3.new(-2.14942098, 1.12009287, 8.76400948)
- Part69.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part69.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part69.Velocity = Vector3.new(0.00743438257, -0.00603456236, 0.00287513179)
- Part69.Size = Vector3.new(1, 1, 1)
- Part69.BackSurface = Enum.SurfaceType.Weld
- Part69.BottomSurface = Enum.SurfaceType.Weld
- Part69.BrickColor = BrickColor.new("Black")
- Part69.CanCollide = false
- Part69.FrontSurface = Enum.SurfaceType.Weld
- Part69.LeftSurface = Enum.SurfaceType.Weld
- Part69.Reflectance = 0.40000000596046
- Part69.RightSurface = Enum.SurfaceType.Weld
- Part69.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part69.TopSurface = Enum.SurfaceType.Weld
- Part69.brickColor = BrickColor.new("Black")
- Part69.FormFactor = Enum.FormFactor.Symmetric
- Part69.formFactor = Enum.FormFactor.Symmetric
- BlockMesh70.Parent = Part69
- BlockMesh70.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld71.Parent = Part69
- Weld71.C0 = CFrame.new(48.4987831, 0.896676004, -24.5209503, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld71.C1 = CFrame.new(24.5209427, 0.896675944, 47.8987808, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld71.Part0 = Part69
- Weld71.Part1 = Part49
- Weld71.part1 = Part49
- Weld72.Parent = Part69
- Weld72.C0 = CFrame.new(41.0999222, -0.899998426, 31.899332, 1, 4.58271754e-10, -1.17473483e-05, -4.58271782e-10, 1, 8.09593075e-15, 1.17473473e-05, -2.7124534e-15, 1)
- Weld72.C1 = CFrame.new(-31.8983898, -0.899998426, 40.5006638, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld72.Part0 = Part69
- Weld72.Part1 = Part49
- Weld72.part1 = Part49
- Weld73.Parent = Part69
- Weld73.C0 = CFrame.new(-58.1754532, 0.888669252, -25.4708996, -0.55006969, 4.31434455e-05, -0.83511889, 1.76351987e-05, -1, -6.32772935e-05, -0.835119128, -4.95344793e-05, 0.550070643)
- Weld73.C1 = CFrame.new(25.4708881, 0.888669133, -58.7754593, 0.835119009, 4.95344648e-05, -0.550070465, 1.76352005e-05, -1, -6.32772935e-05, -0.550069749, 4.31434455e-05, -0.83511883)
- Weld73.Part0 = Part69
- Weld73.Part1 = Part49
- Weld73.part1 = Part49
- Part74.Parent = Part19
- Part74.CFrame = CFrame.new(-1.94938898, 1.12045777, 11.2559624, -0.845457911, -7.00587261e-05, -0.534126878, -2.20038637e-05, -1, 0.000165999925, -0.534118533, 0.000152092951, 0.845411837)
- Part74.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part74.Position = Vector3.new(-1.94938898, 1.12045777, 11.2559624)
- Part74.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part74.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part74.Velocity = Vector3.new(0.0016308371, -0.0129062384, 0.00334199658)
- Part74.Size = Vector3.new(1, 1, 1)
- Part74.BackSurface = Enum.SurfaceType.Weld
- Part74.BottomSurface = Enum.SurfaceType.Weld
- Part74.BrickColor = BrickColor.new("Black")
- Part74.CanCollide = false
- Part74.FrontSurface = Enum.SurfaceType.Weld
- Part74.LeftSurface = Enum.SurfaceType.Weld
- Part74.Reflectance = 0.40000000596046
- Part74.RightSurface = Enum.SurfaceType.Weld
- Part74.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part74.TopSurface = Enum.SurfaceType.Weld
- Part74.brickColor = BrickColor.new("Black")
- Part74.FormFactor = Enum.FormFactor.Symmetric
- Part74.formFactor = Enum.FormFactor.Symmetric
- BlockMesh75.Parent = Part74
- BlockMesh75.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld76.Parent = Part74
- Weld76.C0 = CFrame.new(26.0209427, 0.896676004, 46.4987869, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld76.C1 = CFrame.new(25.3209476, 0.896676004, 47.0987854, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld76.Part0 = Part74
- Weld76.Part1 = Part84
- Weld76.part1 = Part84
- Weld77.Parent = Part74
- Weld77.C0 = CFrame.new(-30.3980541, -0.899998307, 39.1008148, 1.40776929e-05, 3.8394572e-15, -1, 5.49221058e-10, 1, 1.15712222e-14, 1, -5.49221002e-10, 1.40776938e-05)
- Weld77.C1 = CFrame.new(-31.0980587, -0.899998307, 39.7008171, 1.40776929e-05, 3.8394572e-15, -1, 5.49221058e-10, 1, 1.15712222e-14, 1, -5.49221002e-10, 1.40776938e-05)
- Weld77.Part0 = Part74
- Weld77.Part1 = Part84
- Weld77.part1 = Part84
- Weld78.Parent = Part74
- Weld78.C0 = CFrame.new(26.9709454, 0.888669312, -60.1754456, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld78.C1 = CFrame.new(26.2709389, 0.888669252, -59.5754471, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld78.Part0 = Part74
- Weld78.Part1 = Part84
- Weld78.part1 = Part84
- Part79.Parent = Part19
- Part79.CFrame = CFrame.new(-1.6157757, 1.12061, 12.4129658, -0.845450163, -7.00586534e-05, -0.534123659, -2.20041657e-05, -1, 0.000165999969, -0.534116745, 0.000152092834, 0.845412612)
- Part79.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part79.Position = Vector3.new(-1.6157757, 1.12061, 12.4129658)
- Part79.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part79.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part79.Velocity = Vector3.new(-0.00106367958, -0.0154604623, 0.0041192756)
- Part79.Size = Vector3.new(1, 1, 1)
- Part79.BackSurface = Enum.SurfaceType.Weld
- Part79.BottomSurface = Enum.SurfaceType.Weld
- Part79.BrickColor = BrickColor.new("Black")
- Part79.CanCollide = false
- Part79.FrontSurface = Enum.SurfaceType.Weld
- Part79.LeftSurface = Enum.SurfaceType.Weld
- Part79.Reflectance = 0.40000000596046
- Part79.RightSurface = Enum.SurfaceType.Weld
- Part79.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part79.TopSurface = Enum.SurfaceType.Weld
- Part79.brickColor = BrickColor.new("Black")
- Part79.FormFactor = Enum.FormFactor.Symmetric
- Part79.formFactor = Enum.FormFactor.Symmetric
- BlockMesh80.Parent = Part79
- BlockMesh80.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld81.Parent = Part79
- Weld81.C0 = CFrame.new(46.7000008, -0.900000215, -17.7000008, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld81.C1 = CFrame.new(46.1000061, -0.900000215, -17.1000004, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld81.Part0 = Part79
- Weld81.Part1 = Part161
- Weld81.part1 = Part161
- Weld82.Parent = Part79
- Weld82.C0 = CFrame.new(-29.4975147, -0.89999783, 38.3010445, 1.82729527e-05, 6.47934211e-15, -1, 7.12930104e-10, 1, 1.95066809e-14, 1, -7.12930104e-10, 1.82729509e-05)
- Weld82.C1 = CFrame.new(-30.0975094, -0.89999783, 38.9010468, 1.82729527e-05, 6.47934211e-15, -1, 7.12930104e-10, 1, 1.95066809e-14, 1, -7.12930104e-10, 1.82729509e-05)
- Weld82.Part0 = Part79
- Weld82.Part1 = Part161
- Weld82.part1 = Part161
- Weld83.Parent = Part79
- Weld83.C0 = CFrame.new(27.8709354, 0.888669074, -60.9754028, 0.83511883, 4.95344539e-05, -0.550070345, 1.76352005e-05, -1, -6.32772935e-05, -0.550069869, 4.31434455e-05, -0.835118711)
- Weld83.C1 = CFrame.new(27.2709389, 0.888669074, -60.3754044, 0.83511883, 4.95344539e-05, -0.550070345, 1.76352005e-05, -1, -6.32772935e-05, -0.550069869, 4.31434455e-05, -0.835118711)
- Weld83.Part0 = Part79
- Weld83.Part1 = Part161
- Weld83.part1 = Part161
- Part84.Parent = Part19
- Part84.CFrame = CFrame.new(-2.22074437, 1.12034261, 10.374836, -0.845455706, -7.00587043e-05, -0.534125984, -2.20039583e-05, -1, 0.000165999925, -0.534118116, 0.000152092907, 0.845411956)
- Part84.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part84.Position = Vector3.new(-2.22074437, 1.12034261, 10.374836)
- Part84.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part84.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part84.Velocity = Vector3.new(0.00368286856, -0.0110067409, 0.00270979595)
- Part84.Size = Vector3.new(1, 1, 1)
- Part84.BackSurface = Enum.SurfaceType.Weld
- Part84.BottomSurface = Enum.SurfaceType.Weld
- Part84.BrickColor = BrickColor.new("Black")
- Part84.CanCollide = false
- Part84.FrontSurface = Enum.SurfaceType.Weld
- Part84.LeftSurface = Enum.SurfaceType.Weld
- Part84.Reflectance = 0.40000000596046
- Part84.RightSurface = Enum.SurfaceType.Weld
- Part84.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part84.TopSurface = Enum.SurfaceType.Weld
- Part84.brickColor = BrickColor.new("Black")
- Part84.FormFactor = Enum.FormFactor.Symmetric
- Part84.formFactor = Enum.FormFactor.Symmetric
- BlockMesh85.Parent = Part84
- BlockMesh85.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld86.Parent = Part84
- Weld86.C0 = CFrame.new(25.3209476, 0.896676004, 47.0987854, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld86.C1 = CFrame.new(25.7209454, 0.896675944, 46.2987823, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld86.Part0 = Part84
- Weld86.Part1 = Part89
- Weld86.part1 = Part89
- Weld87.Parent = Part84
- Weld87.C0 = CFrame.new(-31.0980587, -0.899998307, 39.7008171, 1.40776929e-05, 3.8394572e-15, -1, 5.49221058e-10, 1, 1.15712222e-14, 1, -5.49221002e-10, 1.40776938e-05)
- Weld87.C1 = CFrame.new(-30.6980801, -0.899998307, 38.9008064, 1.39844651e-05, 3.7885933e-15, -1, 5.45583079e-10, 1, 1.14182803e-14, 1, -5.45583023e-10, 1.39844642e-05)
- Weld87.Part0 = Part84
- Weld87.Part1 = Part89
- Weld87.part1 = Part89
- Weld88.Parent = Part84
- Weld88.C0 = CFrame.new(26.2709389, 0.888669252, -59.5754471, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld88.C1 = CFrame.new(26.6709061, 0.888669133, -60.3754005, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld88.Part0 = Part84
- Weld88.Part1 = Part89
- Weld88.part1 = Part89
- Part89.Parent = Part19
- Part89.CFrame = CFrame.new(-2.30984855, 1.12048411, 11.2647581, -0.845454752, -7.00587043e-05, -0.534125268, -2.20039528e-05, -1, 0.000165999969, -0.534117579, 0.000152092907, 0.845412254)
- Part89.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part89.Position = Vector3.new(-2.30984855, 1.12048411, 11.2647581)
- Part89.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part89.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part89.Velocity = Vector3.new(0.0016102863, -0.0138850436, 0.00250273454)
- Part89.Size = Vector3.new(1, 1, 1)
- Part89.BackSurface = Enum.SurfaceType.Weld
- Part89.BottomSurface = Enum.SurfaceType.Weld
- Part89.BrickColor = BrickColor.new("Black")
- Part89.CanCollide = false
- Part89.FrontSurface = Enum.SurfaceType.Weld
- Part89.LeftSurface = Enum.SurfaceType.Weld
- Part89.Reflectance = 0.40000000596046
- Part89.RightSurface = Enum.SurfaceType.Weld
- Part89.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part89.TopSurface = Enum.SurfaceType.Weld
- Part89.brickColor = BrickColor.new("Black")
- Part89.FormFactor = Enum.FormFactor.Symmetric
- Part89.formFactor = Enum.FormFactor.Symmetric
- BlockMesh90.Parent = Part89
- BlockMesh90.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld91.Parent = Part89
- Weld91.C0 = CFrame.new(-30.6980801, -0.899998307, 38.9008064, 1.39844651e-05, 3.7885933e-15, -1, 5.45583079e-10, 1, 1.14182803e-14, 1, -5.45583023e-10, 1.39844642e-05)
- Weld91.C1 = CFrame.new(-29.897747, -0.899998069, 39.7009239, 1.62219421e-05, 5.10292839e-15, -1, 6.3289457e-10, 1, 1.53697059e-14, 1, -6.3289457e-10, 1.62219421e-05)
- Weld91.Part0 = Part89
- Weld91.Part1 = Part121
- Weld91.part1 = Part121
- Weld92.Parent = Part89
- Weld92.C0 = CFrame.new(-30.6980801, -0.899998307, 38.9008064, 1.39844651e-05, 3.7885933e-15, -1, 5.45583079e-10, 1, 1.14182803e-14, 1, -5.45583023e-10, 1.39844642e-05)
- Weld92.C1 = CFrame.new(-29.897747, -0.899998069, 39.7009239, 1.62219421e-05, 5.10292839e-15, -1, 6.3289457e-10, 1, 1.53697059e-14, 1, -6.3289457e-10, 1.62219421e-05)
- Weld92.Part0 = Part89
- Weld92.Part1 = Part121
- Weld92.part1 = Part121
- Weld93.Parent = Part89
- Weld93.C0 = CFrame.new(26.6709061, 0.888669133, -60.3754005, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld93.C1 = CFrame.new(27.4709053, 0.888669133, -59.5754013, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld93.Part0 = Part89
- Weld93.Part1 = Part121
- Weld93.part1 = Part121
- Part94.Parent = Part19
- Part94.CFrame = CFrame.new(-0.845742464, 1.12034237, 11.0068989, 0.534121454, -7.00586097e-05, -0.845444202, -0.000165999969, -1, -2.20044221e-05, -0.845413029, 0.000152092747, -0.534115613)
- Part94.Orientation = Vector3.new(0, -122.279999, -179.990005)
- Part94.Position = Vector3.new(-0.845742464, 1.12034237, 11.0068989)
- Part94.Rotation = Vector3.new(180, -57.7200012, 0.00999999978)
- Part94.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part94.Velocity = Vector3.new(0.0022110932, -0.00924968719, 0.00591152441)
- Part94.Size = Vector3.new(1, 1, 1)
- Part94.BackSurface = Enum.SurfaceType.Weld
- Part94.BottomSurface = Enum.SurfaceType.Weld
- Part94.BrickColor = BrickColor.new("Black")
- Part94.CanCollide = false
- Part94.FrontSurface = Enum.SurfaceType.Weld
- Part94.LeftSurface = Enum.SurfaceType.Weld
- Part94.Reflectance = 0.40000000596046
- Part94.RightSurface = Enum.SurfaceType.Weld
- Part94.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part94.TopSurface = Enum.SurfaceType.Weld
- Part94.brickColor = BrickColor.new("Black")
- Part94.FormFactor = Enum.FormFactor.Symmetric
- Part94.formFactor = Enum.FormFactor.Symmetric
- BlockMesh95.Parent = Part94
- BlockMesh95.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld96.Parent = Part94
- Weld96.C0 = CFrame.new(-47.2987862, 0.896675944, 26.8209515, -0.737820268, -6.03402877e-05, -0.674997211, 1.73667831e-06, -1, 8.74950783e-05, -0.674997211, 6.33833988e-05, 0.737820387)
- Weld96.C1 = CFrame.new(26.0209484, 0.896675944, 46.0987854, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld96.Part0 = Part94
- Weld96.Part1 = Part156
- Weld96.part1 = Part156
- Weld97.Parent = Part94
- Weld97.C0 = CFrame.new(-39.8999634, -0.899998069, -29.5989113, -1, -7.05654368e-10, 1.80873485e-05, -7.05654368e-10, 1, 1.91770495e-14, -1.80873485e-05, 6.41363141e-15, -1)
- Weld97.C1 = CFrame.new(-30.3975582, -0.899998069, 38.7010307, 1.79932704e-05, 6.28198301e-15, -1, 7.02016167e-10, 1, 1.89135495e-14, 1, -7.02016167e-10, 1.79932686e-05)
- Weld97.Part0 = Part94
- Weld97.Part1 = Part156
- Weld97.part1 = Part156
- Weld98.Parent = Part94
- Weld98.C0 = CFrame.new(59.3754044, 0.888669074, 27.7709389, 0.550069869, -4.31434455e-05, 0.835118711, 1.76352005e-05, -1, -6.32772935e-05, 0.83511883, 4.95344539e-05, -0.550070345)
- Weld98.C1 = CFrame.new(26.9708977, 0.888669133, -60.5754623, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld98.Part0 = Part94
- Weld98.Part1 = Part156
- Weld98.part1 = Part156
- Part99.Parent = Part19
- Part99.CFrame = CFrame.new(-2.52358198, 1.12055063, 11.6029701, -0.845417798, -7.00583623e-05, -0.534111023, -2.20055535e-05, -1, 0.000166000027, -0.534110546, 0.000152092383, 0.845414877)
- Part99.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part99.Position = Vector3.new(-2.52358198, 1.12055063, 11.6029701)
- Part99.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part99.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part99.Velocity = Vector3.new(0.000822574366, -0.0154543249, 0.0020052467)
- Part99.Size = Vector3.new(1, 1, 1)
- Part99.BackSurface = Enum.SurfaceType.Weld
- Part99.BottomSurface = Enum.SurfaceType.Weld
- Part99.BrickColor = BrickColor.new("Black")
- Part99.CanCollide = false
- Part99.FrontSurface = Enum.SurfaceType.Weld
- Part99.LeftSurface = Enum.SurfaceType.Weld
- Part99.Reflectance = 0.40000000596046
- Part99.RightSurface = Enum.SurfaceType.Weld
- Part99.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part99.TopSurface = Enum.SurfaceType.Weld
- Part99.brickColor = BrickColor.new("Black")
- Part99.FormFactor = Enum.FormFactor.Symmetric
- Part99.formFactor = Enum.FormFactor.Symmetric
- BlockMesh100.Parent = Part99
- BlockMesh100.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld101.Parent = Part99
- Weld101.C0 = CFrame.new(25.7209473, 0.896676123, 45.8987808, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld101.C1 = CFrame.new(26.1209488, 0.896675944, 47.0987778, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld101.Part0 = Part99
- Weld101.Part1 = Part126
- Weld101.part1 = Part126
- Weld102.Parent = Part99
- Weld102.C0 = CFrame.new(-30.6998177, -0.899999261, 38.4999809, 3.35634991e-06, 2.13298844e-16, -1.00000834, 1.30853536e-10, 1, -2.13680393e-16, 0.999999762, 1.3085355e-10, -3.35634877e-06)
- Weld102.C1 = CFrame.new(-30.2991219, -0.899999022, 39.7003593, 6.4329206e-06, 7.94963026e-16, -1, 2.50906823e-10, 1, 2.4090265e-15, 1, -2.50906795e-10, 6.43292015e-06)
- Weld102.Part0 = Part99
- Weld102.Part1 = Part126
- Weld102.part1 = Part126
- Weld103.Parent = Part99
- Weld103.C0 = CFrame.new(26.6709061, 0.888669133, -60.7754021, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld103.C1 = CFrame.new(27.0709095, 0.888669133, -59.5754013, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld103.Part0 = Part99
- Weld103.Part1 = Part126
- Weld103.part1 = Part126
- Part104.Parent = Part19
- Part104.CFrame = CFrame.new(-1.66901803, 1.12028515, 10.250349, -0.845416248, -7.00583405e-05, -0.534110844, -2.20056718e-05, -1, 0.000165999983, -0.534110546, 0.00015209234, 0.845414758)
- Part104.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part104.Position = Vector3.new(-1.66901803, 1.12028515, 10.250349)
- Part104.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part104.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part104.Velocity = Vector3.new(0.00397289172, -0.00917885639, 0.00399433402)
- Part104.Size = Vector3.new(1, 1, 1)
- Part104.BackSurface = Enum.SurfaceType.Weld
- Part104.BottomSurface = Enum.SurfaceType.Weld
- Part104.BrickColor = BrickColor.new("Black")
- Part104.CanCollide = false
- Part104.FrontSurface = Enum.SurfaceType.Weld
- Part104.LeftSurface = Enum.SurfaceType.Weld
- Part104.Reflectance = 0.40000000596046
- Part104.RightSurface = Enum.SurfaceType.Weld
- Part104.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part104.TopSurface = Enum.SurfaceType.Weld
- Part104.brickColor = BrickColor.new("Black")
- Part104.FormFactor = Enum.FormFactor.Symmetric
- Part104.formFactor = Enum.FormFactor.Symmetric
- BlockMesh105.Parent = Part104
- BlockMesh105.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld106.Parent = Part104
- Weld106.C0 = CFrame.new(45.5, -0.900000215, -15.8999987, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld106.C1 = CFrame.new(45.7000046, -0.900000215, -16.1000004, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld106.Part0 = Part104
- Weld106.Part1 = Part171
- Weld106.part1 = Part171
- Weld107.Parent = Part104
- Weld107.C0 = CFrame.new(25.7209473, 0.896675885, 47.4987831, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld107.C1 = CFrame.new(25.9209518, 0.896675944, 47.2987823, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld107.Part0 = Part104
- Weld107.Part1 = Part171
- Weld107.part1 = Part171
- Weld108.Parent = Part104
- Weld108.C0 = CFrame.new(-30.6998005, -0.899999499, 40.0999641, 3.44958244e-06, 2.25498567e-16, -1.00000858, 1.34491515e-10, 1, -2.25890717e-16, 0.999999762, 1.34491529e-10, -3.44958107e-06)
- Weld108.C1 = CFrame.new(-31.6998138, -0.899999499, 40.2999573, 3.54281497e-06, 2.3803746e-16, -1.00000882, 1.38129494e-10, 1, -2.38440225e-16, 0.999999762, 1.38129508e-10, -3.54281337e-06)
- Weld108.Part0 = Part104
- Weld108.Part1 = Part45
- Weld108.part1 = Part45
- Weld109.Parent = Part104
- Weld109.C0 = CFrame.new(-30.6998005, -0.899999499, 40.0999641, 3.44958244e-06, 2.25498567e-16, -1.00000858, 1.34491515e-10, 1, -2.25890717e-16, 0.999999762, 1.34491529e-10, -3.44958107e-06)
- Weld109.C1 = CFrame.new(-31.6998138, -0.899999499, 40.2999573, 3.54281497e-06, 2.3803746e-16, -1.00000882, 1.38129494e-10, 1, -2.38440225e-16, 0.999999762, 1.38129508e-10, -3.54281337e-06)
- Weld109.Part0 = Part104
- Weld109.Part1 = Part45
- Weld109.part1 = Part45
- Weld110.Parent = Part104
- Weld110.C0 = CFrame.new(26.6709442, 0.888669252, -59.1754456, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld110.C1 = CFrame.new(25.6708946, 0.888669133, -58.9754601, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld110.Part0 = Part104
- Weld110.Part1 = Part45
- Weld110.part1 = Part45
- Part111.Parent = Part19
- Part111.CFrame = CFrame.new(-2.63918114, 1.12052953, 11.4115658, -0.845448554, -7.00586461e-05, -0.534122944, -2.2004222e-05, -1, 0.000165999983, -0.534116447, 0.00015209282, 0.845412731)
- Part111.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part111.Position = Vector3.new(-2.63918114, 1.12052953, 11.4115658)
- Part111.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part111.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part111.Velocity = Vector3.new(0.0012683206, -0.0151914349, 0.00173600879)
- Part111.Size = Vector3.new(1, 1, 1)
- Part111.BackSurface = Enum.SurfaceType.Weld
- Part111.BottomSurface = Enum.SurfaceType.Weld
- Part111.BrickColor = BrickColor.new("Black")
- Part111.CanCollide = false
- Part111.FrontSurface = Enum.SurfaceType.Weld
- Part111.LeftSurface = Enum.SurfaceType.Weld
- Part111.Reflectance = 0.40000000596046
- Part111.RightSurface = Enum.SurfaceType.Weld
- Part111.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part111.TopSurface = Enum.SurfaceType.Weld
- Part111.brickColor = BrickColor.new("Black")
- Part111.FormFactor = Enum.FormFactor.Symmetric
- Part111.formFactor = Enum.FormFactor.Symmetric
- BlockMesh112.Parent = Part111
- BlockMesh112.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld113.Parent = Part111
- Weld113.C0 = CFrame.new(25.5209465, 0.896676004, 45.9987869, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld113.C1 = CFrame.new(-45.5987854, 0.896676004, 27.3209476, -0.737820268, -6.03402877e-05, -0.674997211, 1.73667831e-06, -1, 8.74950783e-05, -0.674997211, 6.33833988e-05, 0.737820387)
- Weld113.Part0 = Part111
- Weld113.Part1 = Part59
- Weld113.part1 = Part59
- Weld114.Parent = Part111
- Weld114.C0 = CFrame.new(-30.8975639, -0.89999783, 38.6010437, 1.82729527e-05, 6.47934211e-15, -1, 7.12930104e-10, 1, 1.95066809e-14, 1, -7.12930104e-10, 1.82729509e-05)
- Weld114.C1 = CFrame.new(-38.1999855, -0.89999783, -29.0988884, -1, -7.12930326e-10, 1.82738204e-05, -7.12930326e-10, 1, 1.95741962e-14, -1.82738222e-05, 6.54623399e-15, -1)
- Weld114.Part0 = Part111
- Weld114.Part1 = Part59
- Weld114.part1 = Part59
- Weld115.Parent = Part111
- Weld115.C0 = CFrame.new(26.4709148, 0.888669133, -60.6753998, 0.835118651, 4.9534443e-05, -0.550070226, 1.76352005e-05, -1, -6.32772935e-05, -0.550069988, 4.31434455e-05, -0.835118592)
- Weld115.C1 = CFrame.new(61.0754547, 0.888669074, 28.2708988, 0.55006963, -4.31434455e-05, 0.835118949, 1.76352005e-05, -1, -6.32772935e-05, 0.835119188, 4.95344757e-05, -0.550070584)
- Weld115.Part0 = Part111
- Weld115.Part1 = Part59
- Weld115.part1 = Part59
- Part116.Parent = Part19
- Part116.CFrame = CFrame.new(-1.73121285, 1.12024772, 9.97447014, -0.845429659, -7.00584496e-05, -0.534116209, -2.20051188e-05, -1, 0.000165999954, -0.534113526, 0.000152092558, 0.845413744)
- Part116.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part116.Position = Vector3.new(-1.73121285, 1.12024772, 9.97447014)
- Part116.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part116.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part116.Velocity = Vector3.new(0.00461538229, -0.00852395687, 0.00384940067)
- Part116.Size = Vector3.new(1, 1, 1)
- Part116.BackSurface = Enum.SurfaceType.Weld
- Part116.BottomSurface = Enum.SurfaceType.Weld
- Part116.BrickColor = BrickColor.new("Black")
- Part116.CanCollide = false
- Part116.FrontSurface = Enum.SurfaceType.Weld
- Part116.LeftSurface = Enum.SurfaceType.Weld
- Part116.Reflectance = 0.40000000596046
- Part116.RightSurface = Enum.SurfaceType.Weld
- Part116.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part116.TopSurface = Enum.SurfaceType.Weld
- Part116.brickColor = BrickColor.new("Black")
- Part116.FormFactor = Enum.FormFactor.Symmetric
- Part116.formFactor = Enum.FormFactor.Symmetric
- BlockMesh117.Parent = Part116
- BlockMesh117.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld118.Parent = Part116
- Weld118.C0 = CFrame.new(-30.8983574, -0.899998546, 40.3006744, 1.18402158e-05, 2.71233333e-15, -1, 4.61909594e-10, 1, 8.18144211e-15, 1, -4.61909622e-10, 1.18402168e-05)
- Weld118.C1 = CFrame.new(-31.4983597, -0.899998426, 40.9006691, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld118.Part0 = Part116
- Weld118.Part1 = Part54
- Weld118.part1 = Part54
- Weld119.Parent = Part116
- Weld119.C0 = CFrame.new(-30.8983574, -0.899998546, 40.3006744, 1.18402158e-05, 2.71233333e-15, -1, 4.61909594e-10, 1, 8.18144211e-15, 1, -4.61909622e-10, 1.18402168e-05)
- Weld119.C1 = CFrame.new(-31.4983597, -0.899998426, 40.9006691, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld119.Part0 = Part116
- Weld119.Part1 = Part54
- Weld119.part1 = Part54
- Weld120.Parent = Part116
- Weld120.C0 = CFrame.new(26.4709911, 0.888669372, -58.9754181, 0.835119605, 4.95344939e-05, -0.550070763, 1.76352023e-05, -1, -6.32772935e-05, -0.550069332, 4.31434455e-05, -0.835119247)
- Weld120.C1 = CFrame.new(25.8708935, 0.888669133, -58.3754578, 0.835119009, 4.95344648e-05, -0.550070465, 1.76352005e-05, -1, -6.32772935e-05, -0.550069749, 4.31434455e-05, -0.83511883)
- Weld120.Part0 = Part116
- Weld120.Part1 = Part54
- Weld120.part1 = Part54
- Part121.Parent = Part19
- Part121.CFrame = CFrame.new(-1.20618355, 1.12036896, 11.0157194, -0.845454752, -7.00587043e-05, -0.534125268, -2.20039528e-05, -1, 0.000165999969, -0.534117579, 0.000152092907, 0.845412254)
- Part121.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part121.Position = Vector3.new(-1.20618355, 1.12036896, 11.0157194)
- Part121.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part121.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part121.Velocity = Vector3.new(0.0021904842, -0.0102285175, 0.00507230684)
- Part121.Size = Vector3.new(1, 1, 1)
- Part121.BackSurface = Enum.SurfaceType.Weld
- Part121.BottomSurface = Enum.SurfaceType.Weld
- Part121.BrickColor = BrickColor.new("Black")
- Part121.CanCollide = false
- Part121.FrontSurface = Enum.SurfaceType.Weld
- Part121.LeftSurface = Enum.SurfaceType.Weld
- Part121.Reflectance = 0.40000000596046
- Part121.RightSurface = Enum.SurfaceType.Weld
- Part121.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part121.TopSurface = Enum.SurfaceType.Weld
- Part121.brickColor = BrickColor.new("Black")
- Part121.FormFactor = Enum.FormFactor.Symmetric
- Part121.formFactor = Enum.FormFactor.Symmetric
- BlockMesh122.Parent = Part121
- BlockMesh122.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld123.Parent = Part121
- Weld123.C0 = CFrame.new(-29.897747, -0.899998069, 39.7009239, 1.62219421e-05, 5.10292839e-15, -1, 6.3289457e-10, 1, 1.53697059e-14, 1, -6.3289457e-10, 1.62219421e-05)
- Weld123.C1 = CFrame.new(-31.2975311, -0.899998069, 39.9010429, 1.83661796e-05, 6.54580667e-15, -1, 7.16568083e-10, 1, 1.97064248e-14, 1, -7.16568083e-10, 1.83661796e-05)
- Weld123.Part0 = Part121
- Weld123.Part1 = Part131
- Weld123.part1 = Part131
- Weld124.Parent = Part121
- Weld124.C0 = CFrame.new(-29.897747, -0.899998069, 39.7009239, 1.62219421e-05, 5.10292839e-15, -1, 6.3289457e-10, 1, 1.53697059e-14, 1, -6.3289457e-10, 1.62219421e-05)
- Weld124.C1 = CFrame.new(-31.2975311, -0.899998069, 39.9010429, 1.83661796e-05, 6.54580667e-15, -1, 7.16568083e-10, 1, 1.97064248e-14, 1, -7.16568083e-10, 1.83661796e-05)
- Weld124.Part0 = Part121
- Weld124.Part1 = Part131
- Weld124.part1 = Part131
- Weld125.Parent = Part121
- Weld125.C0 = CFrame.new(27.4709053, 0.888669133, -59.5754013, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld125.C1 = CFrame.new(26.0709057, 0.888669133, -59.3754501, 0.835119307, 4.95344902e-05, -0.550070763, 1.76351987e-05, -1, -6.32772935e-05, -0.550069571, 4.31434455e-05, -0.835119009)
- Weld125.Part0 = Part121
- Weld125.Part1 = Part131
- Weld125.part1 = Part131
- Part126.Parent = Part19
- Part126.CFrame = CFrame.new(-1.54447675, 1.12036026, 10.8021183, -0.845417798, -7.00583623e-05, -0.534111023, -2.20055535e-05, -1, 0.000166000027, -0.534110546, 0.000152092383, 0.845414877)
- Part126.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part126.Position = Vector3.new(-1.54447675, 1.12036026, 10.8021183)
- Part126.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part126.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part126.Velocity = Vector3.new(0.0026878831, -0.0104882866, 0.00428455509)
- Part126.Size = Vector3.new(1, 1, 1)
- Part126.BackSurface = Enum.SurfaceType.Weld
- Part126.BottomSurface = Enum.SurfaceType.Weld
- Part126.BrickColor = BrickColor.new("Black")
- Part126.CanCollide = false
- Part126.FrontSurface = Enum.SurfaceType.Weld
- Part126.LeftSurface = Enum.SurfaceType.Weld
- Part126.Reflectance = 0.40000000596046
- Part126.RightSurface = Enum.SurfaceType.Weld
- Part126.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part126.TopSurface = Enum.SurfaceType.Weld
- Part126.brickColor = BrickColor.new("Black")
- Part126.FormFactor = Enum.FormFactor.Symmetric
- Part126.formFactor = Enum.FormFactor.Symmetric
- BlockMesh127.Parent = Part126
- BlockMesh127.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld128.Parent = Part126
- Weld128.C0 = CFrame.new(-30.2991219, -0.899999022, 39.7003593, 6.4329206e-06, 7.94963026e-16, -1, 2.50906823e-10, 1, 2.4090265e-15, 1, -2.50906795e-10, 6.43292015e-06)
- Weld128.C1 = CFrame.new(-30.0986881, -0.899998665, 39.4005508, 9.41626149e-06, 1.71173267e-15, -1, 3.67322145e-10, 1, 5.17053433e-15, 1, -3.67322145e-10, 9.41626149e-06)
- Weld128.Part0 = Part126
- Weld128.Part1 = Part176
- Weld128.part1 = Part176
- Weld129.Parent = Part126
- Weld129.C0 = CFrame.new(-30.2991219, -0.899999022, 39.7003593, 6.4329206e-06, 7.94963026e-16, -1, 2.50906823e-10, 1, 2.4090265e-15, 1, -2.50906795e-10, 6.43292015e-06)
- Weld129.C1 = CFrame.new(-30.0986881, -0.899998665, 39.4005508, 9.41626149e-06, 1.71173267e-15, -1, 3.67322145e-10, 1, 5.17053433e-15, 1, -3.67322145e-10, 9.41626149e-06)
- Weld129.Part0 = Part126
- Weld129.Part1 = Part176
- Weld129.part1 = Part176
- Weld130.Parent = Part126
- Weld130.C0 = CFrame.new(27.0709095, 0.888669133, -59.5754013, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld130.C1 = CFrame.new(27.2709408, 0.888669252, -59.8754463, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld130.Part0 = Part126
- Weld130.Part1 = Part176
- Weld130.part1 = Part176
- Part131.Parent = Part19
- Part131.CFrame = CFrame.new(-2.28303623, 1.12030494, 10.0989122, -0.845453501, -7.00586825e-05, -0.53412509, -2.2004042e-05, -1, 0.000165999954, -0.53411752, 0.000152092878, 0.845412195)
- Part131.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part131.Position = Vector3.new(-2.28303623, 1.12030494, 10.0989122)
- Part131.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part131.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part131.Velocity = Vector3.new(0.00432546437, -0.0103519652, 0.00256463513)
- Part131.Size = Vector3.new(1, 1, 1)
- Part131.BackSurface = Enum.SurfaceType.Weld
- Part131.BottomSurface = Enum.SurfaceType.Weld
- Part131.BrickColor = BrickColor.new("Black")
- Part131.CanCollide = false
- Part131.FrontSurface = Enum.SurfaceType.Weld
- Part131.LeftSurface = Enum.SurfaceType.Weld
- Part131.Reflectance = 0.40000000596046
- Part131.RightSurface = Enum.SurfaceType.Weld
- Part131.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part131.TopSurface = Enum.SurfaceType.Weld
- Part131.brickColor = BrickColor.new("Black")
- Part131.FormFactor = Enum.FormFactor.Symmetric
- Part131.formFactor = Enum.FormFactor.Symmetric
- BlockMesh132.Parent = Part131
- BlockMesh132.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld133.Parent = Part131
- Weld133.C0 = CFrame.new(-31.2975311, -0.899998069, 39.9010429, 1.83661796e-05, 6.54580667e-15, -1, 7.16568083e-10, 1, 1.97064248e-14, 1, -7.16568083e-10, 1.83661796e-05)
- Weld133.C1 = CFrame.new(-39.3999557, -0.89999783, -29.6989307, -1, -7.12930326e-10, 1.82738204e-05, -7.12930326e-10, 1, 1.95741962e-14, -1.82738222e-05, 6.54623399e-15, -1)
- Weld133.Part0 = Part131
- Weld133.Part1 = Part166
- Weld133.part1 = Part166
- Weld134.Parent = Part131
- Weld134.C0 = CFrame.new(-31.2975311, -0.899998069, 39.9010429, 1.83661796e-05, 6.54580667e-15, -1, 7.16568083e-10, 1, 1.97064248e-14, 1, -7.16568083e-10, 1.83661796e-05)
- Weld134.C1 = CFrame.new(-39.3999557, -0.89999783, -29.6989307, -1, -7.12930326e-10, 1.82738204e-05, -7.12930326e-10, 1, 1.95741962e-14, -1.82738222e-05, 6.54623399e-15, -1)
- Weld134.Part0 = Part131
- Weld134.Part1 = Part166
- Weld134.part1 = Part166
- Weld135.Parent = Part131
- Weld135.C0 = CFrame.new(26.0709057, 0.888669133, -59.3754501, 0.835119307, 4.95344902e-05, -0.550070763, 1.76351987e-05, -1, -6.32772935e-05, -0.550069571, 4.31434455e-05, -0.835119009)
- Weld135.C1 = CFrame.new(59.8754616, 0.888669133, 27.6708946, 0.55006963, -4.31434455e-05, 0.835118949, 1.76352005e-05, -1, -6.32772935e-05, 0.835119188, 4.95344757e-05, -0.550070584)
- Weld135.Part0 = Part131
- Weld135.Part1 = Part166
- Weld135.part1 = Part166
- Part136.Parent = Part19
- Part136.CFrame = CFrame.new(-0.867980957, 1.12037778, 11.2293682, -0.845459223, -7.0058748e-05, -0.534126997, -2.20037637e-05, -1, 0.00016599994, -0.534118474, 0.000152092995, 0.845411897)
- Part136.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part136.Position = Vector3.new(-0.867980957, 1.12037778, 11.2293682)
- Part136.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part136.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part136.Velocity = Vector3.new(0.00169297378, -0.00996913109, 0.00585984765)
- Part136.Size = Vector3.new(1, 1, 1)
- Part136.BackSurface = Enum.SurfaceType.Weld
- Part136.BottomSurface = Enum.SurfaceType.Weld
- Part136.BrickColor = BrickColor.new("Black")
- Part136.CanCollide = false
- Part136.FrontSurface = Enum.SurfaceType.Weld
- Part136.LeftSurface = Enum.SurfaceType.Weld
- Part136.Reflectance = 0.40000000596046
- Part136.RightSurface = Enum.SurfaceType.Weld
- Part136.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part136.TopSurface = Enum.SurfaceType.Weld
- Part136.brickColor = BrickColor.new("Black")
- Part136.FormFactor = Enum.FormFactor.Symmetric
- Part136.formFactor = Enum.FormFactor.Symmetric
- BlockMesh137.Parent = Part136
- BlockMesh137.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld138.Parent = Part136
- Weld138.C0 = CFrame.new(-29.4983311, -0.899998546, 39.7006607, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld138.C1 = CFrame.new(-30.3980541, -0.899998307, 39.1008148, 1.40776929e-05, 3.8394572e-15, -1, 5.49221058e-10, 1, 1.15712222e-14, 1, -5.49221002e-10, 1.40776938e-05)
- Weld138.Part0 = Part136
- Weld138.Part1 = Part74
- Weld138.part1 = Part74
- Weld139.Parent = Part136
- Weld139.C0 = CFrame.new(-29.4983311, -0.899998546, 39.7006607, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld139.C1 = CFrame.new(-30.3980541, -0.899998307, 39.1008148, 1.40776929e-05, 3.8394572e-15, -1, 5.49221058e-10, 1, 1.15712222e-14, 1, -5.49221002e-10, 1.40776938e-05)
- Weld139.Part0 = Part136
- Weld139.Part1 = Part74
- Weld139.part1 = Part74
- Weld140.Parent = Part136
- Weld140.C0 = CFrame.new(27.8709087, 0.888669133, -59.5754013, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld140.C1 = CFrame.new(26.9709454, 0.888669312, -60.1754456, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld140.Part0 = Part136
- Weld140.Part1 = Part74
- Weld140.part1 = Part74
- Part141.Parent = Part19
- Part141.CFrame = CFrame.new(-1.8558073, 1.12017226, 9.42263889, -0.845439851, -7.00585369e-05, -0.534119964, -2.2004624e-05, -1, 0.000165999983, -0.534115314, 0.000152092689, 0.845413029)
- Part141.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part141.Position = Vector3.new(-1.8558073, 1.12017226, 9.42263889)
- Part141.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part141.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part141.Velocity = Vector3.new(0.00590053573, -0.00721448241, 0.00355905504)
- Part141.Size = Vector3.new(1, 1, 1)
- Part141.BackSurface = Enum.SurfaceType.Weld
- Part141.BottomSurface = Enum.SurfaceType.Weld
- Part141.BrickColor = BrickColor.new("Black")
- Part141.CanCollide = false
- Part141.FrontSurface = Enum.SurfaceType.Weld
- Part141.LeftSurface = Enum.SurfaceType.Weld
- Part141.Reflectance = 0.40000000596046
- Part141.RightSurface = Enum.SurfaceType.Weld
- Part141.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part141.TopSurface = Enum.SurfaceType.Weld
- Part141.brickColor = BrickColor.new("Black")
- Part141.FormFactor = Enum.FormFactor.Symmetric
- Part141.formFactor = Enum.FormFactor.Symmetric
- BlockMesh142.Parent = Part141
- BlockMesh142.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld143.Parent = Part141
- Weld143.C0 = CFrame.new(25.1209469, 0.896676004, 48.0987816, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld143.C1 = CFrame.new(26.9209518, 0.896676004, 47.0987778, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld143.Part0 = Part141
- Weld143.Part1 = Part136
- Weld143.part1 = Part136
- Weld144.Parent = Part141
- Weld144.C0 = CFrame.new(-31.2983685, -0.899998546, 40.7006683, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld144.C1 = CFrame.new(-29.4983311, -0.899998546, 39.7006607, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld144.Part0 = Part141
- Weld144.Part1 = Part136
- Weld144.part1 = Part136
- Weld145.Parent = Part141
- Weld145.C0 = CFrame.new(26.0708981, 0.888669133, -58.5754623, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld145.C1 = CFrame.new(27.8709087, 0.888669133, -59.5754013, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld145.Part0 = Part141
- Weld145.Part1 = Part136
- Weld145.part1 = Part136
- Part146.Parent = Part19
- Part146.CFrame = CFrame.new(-2.15854001, 1.1203804, 10.6507912, -0.845424473, -7.00583987e-05, -0.534114063, -2.20053153e-05, -1, 0.000165999954, -0.534112275, 0.000152092471, 0.845414042)
- Part146.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part146.Position = Vector3.new(-2.15854001, 1.1203804, 10.6507912)
- Part146.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part146.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part146.Velocity = Vector3.new(0.00304019917, -0.0116618415, 0.00285475166)
- Part146.Size = Vector3.new(1, 1, 1)
- Part146.BackSurface = Enum.SurfaceType.Weld
- Part146.BottomSurface = Enum.SurfaceType.Weld
- Part146.BrickColor = BrickColor.new("Black")
- Part146.CanCollide = false
- Part146.FrontSurface = Enum.SurfaceType.Weld
- Part146.LeftSurface = Enum.SurfaceType.Weld
- Part146.Reflectance = 0.40000000596046
- Part146.RightSurface = Enum.SurfaceType.Weld
- Part146.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part146.TopSurface = Enum.SurfaceType.Weld
- Part146.brickColor = BrickColor.new("Black")
- Part146.FormFactor = Enum.FormFactor.Symmetric
- Part146.formFactor = Enum.FormFactor.Symmetric
- BlockMesh147.Parent = Part146
- BlockMesh147.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld148.Parent = Part146
- Weld148.C0 = CFrame.new(-30.8989697, -0.899998784, 39.5003967, 7.36521861e-06, 1.04414588e-15, -1, 2.87286611e-10, 1, 3.16007452e-15, 1, -2.87286583e-10, 7.36521815e-06)
- Weld148.C1 = CFrame.new(-30.6987534, -0.899998784, 39.3005295, 9.1365755e-06, 1.61103189e-15, -1, 3.56408209e-10, 1, 4.86738208e-15, 1, -3.56408209e-10, 9.1365755e-06)
- Weld148.Part0 = Part146
- Weld148.Part1 = Part64
- Weld148.part1 = Part64
- Weld149.Parent = Part146
- Weld149.C0 = CFrame.new(-30.8989697, -0.899998784, 39.5003967, 7.36521861e-06, 1.04414588e-15, -1, 2.87286611e-10, 1, 3.16007452e-15, 1, -2.87286583e-10, 7.36521815e-06)
- Weld149.C1 = CFrame.new(-30.6987534, -0.899998784, 39.3005295, 9.1365755e-06, 1.61103189e-15, -1, 3.56408209e-10, 1, 4.86738208e-15, 1, -3.56408209e-10, 9.1365755e-06)
- Weld149.Part0 = Part146
- Weld149.Part1 = Part64
- Weld149.part1 = Part64
- Weld150.Parent = Part146
- Weld150.C0 = CFrame.new(26.4709587, 0.888669312, -59.7754364, 0.835119426, 4.9534483e-05, -0.550070643, 1.76352023e-05, -1, -6.32772935e-05, -0.550069451, 4.31434455e-05, -0.835119128)
- Weld150.C1 = CFrame.new(26.6709042, 0.888669133, -59.9754028, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld150.Part0 = Part146
- Weld150.Part1 = Part64
- Weld150.part1 = Part64
- Part151.Parent = Part19
- Part151.CFrame = CFrame.new(-2.4787488, 1.12013805, 8.91080093, -0.845438063, -7.00585224e-05, -0.534119308, -2.20047004e-05, -1, 0.000165999983, -0.534114957, 0.00015209266, 0.845413208)
- Part151.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part151.Position = Vector3.new(-2.4787488, 1.12013805, 8.91080093)
- Part151.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part151.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part151.Velocity = Vector3.new(0.00709245494, -0.00734089315, 0.00210841699)
- Part151.Size = Vector3.new(1, 1, 1)
- Part151.BackSurface = Enum.SurfaceType.Weld
- Part151.BottomSurface = Enum.SurfaceType.Weld
- Part151.BrickColor = BrickColor.new("Black")
- Part151.CanCollide = false
- Part151.FrontSurface = Enum.SurfaceType.Weld
- Part151.LeftSurface = Enum.SurfaceType.Weld
- Part151.Reflectance = 0.40000000596046
- Part151.RightSurface = Enum.SurfaceType.Weld
- Part151.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part151.TopSurface = Enum.SurfaceType.Weld
- Part151.brickColor = BrickColor.new("Black")
- Part151.FormFactor = Enum.FormFactor.Symmetric
- Part151.formFactor = Enum.FormFactor.Symmetric
- BlockMesh152.Parent = Part151
- BlockMesh152.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld153.Parent = Part151
- Weld153.C0 = CFrame.new(44.1000023, -0.900000215, -15.1999998, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld153.C1 = CFrame.new(44.9000015, -0.900000215, -15.2999992, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- Weld153.Part0 = Part151
- Weld153.Part1 = Part141
- Weld153.part1 = Part141
- Weld154.Parent = Part151
- Weld154.C0 = CFrame.new(-32.0983849, -0.899998546, 40.8006668, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld154.C1 = CFrame.new(-31.2983685, -0.899998546, 40.7006683, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld154.Part0 = Part151
- Weld154.Part1 = Part141
- Weld154.part1 = Part141
- Weld155.Parent = Part151
- Weld155.C0 = CFrame.new(25.270895, 0.888669074, -58.4754601, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld155.C1 = CFrame.new(26.0708981, 0.888669133, -58.5754623, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld155.Part0 = Part151
- Weld155.Part1 = Part141
- Weld155.part1 = Part141
- Part156.Parent = Part19
- Part156.CFrame = CFrame.new(-2.16312504, 1.12052405, 11.5941315, -0.845442712, -7.00585952e-05, -0.534121037, -2.20045058e-05, -1, 0.000165999954, -0.534115434, 0.000152092718, 0.845413029)
- Part156.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part156.Position = Vector3.new(-2.16312504, 1.12052405, 11.5941315)
- Part156.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part156.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part156.Velocity = Vector3.new(0.000843225629, -0.0144753968, 0.00284450199)
- Part156.Size = Vector3.new(1, 1, 1)
- Part156.BackSurface = Enum.SurfaceType.Weld
- Part156.BottomSurface = Enum.SurfaceType.Weld
- Part156.BrickColor = BrickColor.new("Black")
- Part156.CanCollide = false
- Part156.FrontSurface = Enum.SurfaceType.Weld
- Part156.LeftSurface = Enum.SurfaceType.Weld
- Part156.Reflectance = 0.40000000596046
- Part156.RightSurface = Enum.SurfaceType.Weld
- Part156.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part156.TopSurface = Enum.SurfaceType.Weld
- Part156.brickColor = BrickColor.new("Black")
- Part156.FormFactor = Enum.FormFactor.Symmetric
- Part156.formFactor = Enum.FormFactor.Symmetric
- BlockMesh157.Parent = Part156
- BlockMesh157.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld158.Parent = Part156
- Weld158.C0 = CFrame.new(26.0209484, 0.896675944, 46.0987854, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld158.C1 = CFrame.new(47.0987892, 0.896675944, -26.7209473, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld158.Part0 = Part156
- Weld158.Part1 = Part226
- Weld158.part1 = Part226
- Weld159.Parent = Part156
- Weld159.C0 = CFrame.new(-30.3975582, -0.899998069, 38.7010307, 1.79932704e-05, 6.28198301e-15, -1, 7.02016167e-10, 1, 1.89135495e-14, 1, -7.02016167e-10, 1.79932686e-05)
- Weld159.C1 = CFrame.new(39.6999664, -0.899998069, 29.6989117, 1, 7.02016389e-10, -1.79941126e-05, -7.02016389e-10, 1, 1.89800026e-14, 1.79941144e-05, -6.34784024e-15, 1)
- Weld159.Part0 = Part156
- Weld159.Part1 = Part226
- Weld159.part1 = Part226
- Weld160.Parent = Part156
- Weld160.C0 = CFrame.new(26.9708977, 0.888669133, -60.5754623, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld160.C1 = CFrame.new(-59.5754013, 0.888669133, -27.6709023, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld160.Part0 = Part156
- Weld160.Part1 = Part226
- Weld160.part1 = Part226
- Part161.Parent = Part19
- Part161.CFrame = CFrame.new(-1.80257237, 1.12049723, 11.5852489, -0.845449269, -7.00586461e-05, -0.534123302, -2.20042057e-05, -1, 0.000165999969, -0.534116626, 0.00015209282, 0.845412672)
- Part161.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part161.Position = Vector3.new(-1.80257237, 1.12049723, 11.5852489)
- Part161.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part161.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part161.Velocity = Vector3.new(0.00086397992, -0.0134960888, 0.00368397962)
- Part161.Size = Vector3.new(1, 1, 1)
- Part161.BackSurface = Enum.SurfaceType.Weld
- Part161.BottomSurface = Enum.SurfaceType.Weld
- Part161.BrickColor = BrickColor.new("Black")
- Part161.CanCollide = false
- Part161.FrontSurface = Enum.SurfaceType.Weld
- Part161.LeftSurface = Enum.SurfaceType.Weld
- Part161.Reflectance = 0.40000000596046
- Part161.RightSurface = Enum.SurfaceType.Weld
- Part161.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part161.TopSurface = Enum.SurfaceType.Weld
- Part161.brickColor = BrickColor.new("Black")
- Part161.FormFactor = Enum.FormFactor.Symmetric
- Part161.formFactor = Enum.FormFactor.Symmetric
- BlockMesh162.Parent = Part161
- BlockMesh162.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld163.Parent = Part161
- Weld163.C0 = CFrame.new(26.3209496, 0.896676004, 46.2987823, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld163.C1 = CFrame.new(25.5209465, 0.896676004, 45.9987869, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld163.Part0 = Part161
- Weld163.Part1 = Part111
- Weld163.part1 = Part111
- Weld164.Parent = Part161
- Weld164.C0 = CFrame.new(-30.0975094, -0.89999783, 38.9010468, 1.82729527e-05, 6.47934211e-15, -1, 7.12930104e-10, 1, 1.95066809e-14, 1, -7.12930104e-10, 1.82729509e-05)
- Weld164.C1 = CFrame.new(-30.8975639, -0.89999783, 38.6010437, 1.82729527e-05, 6.47934211e-15, -1, 7.12930104e-10, 1, 1.95066809e-14, 1, -7.12930104e-10, 1.82729509e-05)
- Weld164.Part0 = Part161
- Weld164.Part1 = Part111
- Weld164.part1 = Part111
- Weld165.Parent = Part161
- Weld165.C0 = CFrame.new(27.2709389, 0.888669074, -60.3754044, 0.83511883, 4.95344539e-05, -0.550070345, 1.76352005e-05, -1, -6.32772935e-05, -0.550069869, 4.31434455e-05, -0.835118711)
- Weld165.C1 = CFrame.new(26.4709148, 0.888669133, -60.6753998, 0.835118651, 4.9534443e-05, -0.550070226, 1.76352005e-05, -1, -6.32772935e-05, -0.550069988, 4.31434455e-05, -0.835118592)
- Weld165.Part0 = Part161
- Weld165.Part1 = Part111
- Weld165.part1 = Part111
- Part166.Parent = Part19
- Part166.CFrame = CFrame.new(-1.19739842, 1.12042308, 11.3762102, 0.534124315, -7.00586606e-05, -0.845451474, -0.000165999969, -1, -2.20041311e-05, -0.845412433, 0.000152092849, -0.534117162)
- Part166.Orientation = Vector3.new(0, -122.279999, -179.990005)
- Part166.Position = Vector3.new(-1.19739842, 1.12042308, 11.3762102)
- Part166.Rotation = Vector3.new(180, -57.7200012, 0.00999999978)
- Part166.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part166.Velocity = Vector3.new(0.00135092856, -0.0112758484, 0.00509292353)
- Part166.Size = Vector3.new(1, 1, 1)
- Part166.BackSurface = Enum.SurfaceType.Weld
- Part166.BottomSurface = Enum.SurfaceType.Weld
- Part166.BrickColor = BrickColor.new("Black")
- Part166.CanCollide = false
- Part166.FrontSurface = Enum.SurfaceType.Weld
- Part166.LeftSurface = Enum.SurfaceType.Weld
- Part166.Reflectance = 0.40000000596046
- Part166.RightSurface = Enum.SurfaceType.Weld
- Part166.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part166.TopSurface = Enum.SurfaceType.Weld
- Part166.brickColor = BrickColor.new("Black")
- Part166.FormFactor = Enum.FormFactor.Symmetric
- Part166.formFactor = Enum.FormFactor.Symmetric
- BlockMesh167.Parent = Part166
- BlockMesh167.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld168.Parent = Part166
- Weld168.C0 = CFrame.new(-46.7987862, 0.896676004, 26.7209454, -0.737820268, -6.03402877e-05, -0.674997211, 1.73667831e-06, -1, 8.74950783e-05, -0.674997211, 6.33833988e-05, 0.737820387)
- Weld168.C1 = CFrame.new(26.9209461, 0.896676004, 45.6987839, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld168.Part0 = Part166
- Weld168.Part1 = Part79
- Weld168.part1 = Part79
- Weld169.Parent = Part166
- Weld169.C0 = CFrame.new(-39.3999557, -0.89999783, -29.6989307, -1, -7.12930326e-10, 1.82738204e-05, -7.12930326e-10, 1, 1.95741962e-14, -1.82738222e-05, 6.54623399e-15, -1)
- Weld169.C1 = CFrame.new(-29.4975147, -0.89999783, 38.3010445, 1.82729527e-05, 6.47934211e-15, -1, 7.12930104e-10, 1, 1.95066809e-14, 1, -7.12930104e-10, 1.82729509e-05)
- Weld169.Part0 = Part166
- Weld169.Part1 = Part79
- Weld169.part1 = Part79
- Weld170.Parent = Part166
- Weld170.C0 = CFrame.new(59.8754616, 0.888669133, 27.6708946, 0.55006963, -4.31434455e-05, 0.835118949, 1.76352005e-05, -1, -6.32772935e-05, 0.835119188, 4.95344757e-05, -0.550070584)
- Weld170.C1 = CFrame.new(27.8709354, 0.888669074, -60.9754028, 0.83511883, 4.95344539e-05, -0.550070345, 1.76352005e-05, -1, -6.32772935e-05, -0.550069869, 4.31434455e-05, -0.835118711)
- Weld170.Part0 = Part166
- Weld170.Part1 = Part79
- Weld170.part1 = Part79
- Part171.Parent = Part19
- Part171.CFrame = CFrame.new(-1.60674381, 1.12032282, 10.5262632, -0.845416486, -7.00583405e-05, -0.534110904, -2.20056627e-05, -1, 0.000165999983, -0.534110606, 0.00015209234, 0.845414698)
- Part171.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part171.Position = Vector3.new(-1.60674381, 1.12032282, 10.5262632)
- Part171.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part171.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part171.Velocity = Vector3.new(0.00333031826, -0.00983364973, 0.00413945317)
- Part171.Size = Vector3.new(1, 1, 1)
- Part171.BackSurface = Enum.SurfaceType.Weld
- Part171.BottomSurface = Enum.SurfaceType.Weld
- Part171.BrickColor = BrickColor.new("Black")
- Part171.CanCollide = false
- Part171.FrontSurface = Enum.SurfaceType.Weld
- Part171.LeftSurface = Enum.SurfaceType.Weld
- Part171.Reflectance = 0.40000000596046
- Part171.RightSurface = Enum.SurfaceType.Weld
- Part171.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part171.TopSurface = Enum.SurfaceType.Weld
- Part171.brickColor = BrickColor.new("Black")
- Part171.FormFactor = Enum.FormFactor.Symmetric
- Part171.formFactor = Enum.FormFactor.Symmetric
- BlockMesh172.Parent = Part171
- BlockMesh172.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld173.Parent = Part171
- Weld173.C0 = CFrame.new(-30.4999142, -0.899999499, 39.8999825, 1.11877966e-06, 2.22583384e-17, -1.00000262, 4.35420554e-11, 1, -2.23855207e-17, 0.999999762, 4.35420588e-11, -1.11877966e-06)
- Weld173.C1 = CFrame.new(-30.6998177, -0.899999261, 38.4999809, 3.35634991e-06, 2.13298844e-16, -1.00000834, 1.30853536e-10, 1, -2.13680393e-16, 0.999999762, 1.3085355e-10, -3.35634877e-06)
- Weld173.Part0 = Part171
- Weld173.Part1 = Part99
- Weld173.part1 = Part99
- Weld174.Parent = Part171
- Weld174.C0 = CFrame.new(-30.4999142, -0.899999499, 39.8999825, 1.11877966e-06, 2.22583384e-17, -1.00000262, 4.35420554e-11, 1, -2.23855207e-17, 0.999999762, 4.35420588e-11, -1.11877966e-06)
- Weld174.C1 = CFrame.new(-30.6998177, -0.899999261, 38.4999809, 3.35634991e-06, 2.13298844e-16, -1.00000834, 1.30853536e-10, 1, -2.13680393e-16, 0.999999762, 1.3085355e-10, -3.35634877e-06)
- Weld174.Part0 = Part171
- Weld174.Part1 = Part99
- Weld174.part1 = Part99
- Weld175.Parent = Part171
- Weld175.C0 = CFrame.new(26.8709641, 0.888669312, -59.3754349, 0.835119426, 4.9534483e-05, -0.550070643, 1.76352023e-05, -1, -6.32772935e-05, -0.550069451, 4.31434455e-05, -0.835119128)
- Weld175.C1 = CFrame.new(26.6709061, 0.888669133, -60.7754021, 0.835118532, 4.95344284e-05, -0.550070047, 1.76352023e-05, -1, -6.32772935e-05, -0.550070047, 4.31434455e-05, -0.835118532)
- Weld175.Part0 = Part171
- Weld175.Part1 = Part99
- Weld175.part1 = Part99
- Part176.Parent = Part19
- Part176.CFrame = CFrame.new(-1.53564632, 1.1204145, 11.1626186, -0.845418751, -7.00583623e-05, -0.534111738, -2.2005559e-05, -1, 0.000165999983, -0.534111083, 0.000152092383, 0.845414579)
- Part176.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part176.Position = Vector3.new(-1.53564632, 1.1204145, 11.1626186)
- Part176.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part176.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part176.Velocity = Vector3.new(0.00184830476, -0.0115355263, 0.00430527795)
- Part176.Size = Vector3.new(1, 1, 1)
- Part176.BackSurface = Enum.SurfaceType.Weld
- Part176.BottomSurface = Enum.SurfaceType.Weld
- Part176.BrickColor = BrickColor.new("Black")
- Part176.CanCollide = false
- Part176.FrontSurface = Enum.SurfaceType.Weld
- Part176.LeftSurface = Enum.SurfaceType.Weld
- Part176.Reflectance = 0.40000000596046
- Part176.RightSurface = Enum.SurfaceType.Weld
- Part176.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part176.TopSurface = Enum.SurfaceType.Weld
- Part176.brickColor = BrickColor.new("Black")
- Part176.FormFactor = Enum.FormFactor.Symmetric
- Part176.formFactor = Enum.FormFactor.Symmetric
- BlockMesh177.Parent = Part176
- BlockMesh177.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld178.Parent = Part176
- Weld178.C0 = CFrame.new(26.3209496, 0.896675944, 46.7987823, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld178.C1 = CFrame.new(24.9209518, 0.896675944, 47.4987831, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld178.Part0 = Part176
- Weld178.Part1 = Part25
- Weld178.part1 = Part25
- Weld179.Parent = Part176
- Weld179.C0 = CFrame.new(-30.0986881, -0.899998665, 39.4005508, 9.41626149e-06, 1.71173267e-15, -1, 3.67322145e-10, 1, 5.17053433e-15, 1, -3.67322145e-10, 9.41626149e-06)
- Weld179.C1 = CFrame.new(-31.4987259, -0.899998665, 40.100544, 9.32303283e-06, 1.67782658e-15, -1, 3.63684166e-10, 1, 5.06846601e-15, 1, -3.63684166e-10, 9.32303283e-06)
- Weld179.Part0 = Part176
- Weld179.Part1 = Part25
- Weld179.part1 = Part25
- Weld180.Parent = Part176
- Weld180.C0 = CFrame.new(27.2709408, 0.888669252, -59.8754463, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld180.C1 = CFrame.new(25.8709049, 0.888669133, -59.1754532, 0.835119128, 4.95344793e-05, -0.550070643, 1.76351987e-05, -1, -6.32772935e-05, -0.55006969, 4.31434455e-05, -0.83511889)
- Weld180.Part0 = Part176
- Weld180.Part1 = Part25
- Weld180.part1 = Part25
- Part181.Parent = Part19
- Part181.CFrame = CFrame.new(-1.79352796, 1.12020993, 9.69854736, -0.845436335, -7.00585151e-05, -0.534118533, -2.20047659e-05, -1, 0.000165999998, -0.53411454, 0.000152092645, 0.845413446)
- Part181.Orientation = Vector3.new(-0.00999999978, -32.2799988, -180)
- Part181.Position = Vector3.new(-1.79352796, 1.12020993, 9.69854736)
- Part181.Rotation = Vector3.new(-0.00999999978, -32.2799988, 180)
- Part181.Color = Color3.new(0.105882, 0.164706, 0.207843)
- Part181.Velocity = Vector3.new(0.00525797578, -0.00786924548, 0.00370418606)
- Part181.Size = Vector3.new(1, 1, 1)
- Part181.BackSurface = Enum.SurfaceType.Weld
- Part181.BottomSurface = Enum.SurfaceType.Weld
- Part181.BrickColor = BrickColor.new("Black")
- Part181.CanCollide = false
- Part181.FrontSurface = Enum.SurfaceType.Weld
- Part181.LeftSurface = Enum.SurfaceType.Weld
- Part181.Reflectance = 0.40000000596046
- Part181.RightSurface = Enum.SurfaceType.Weld
- Part181.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part181.TopSurface = Enum.SurfaceType.Weld
- Part181.brickColor = BrickColor.new("Black")
- Part181.FormFactor = Enum.FormFactor.Symmetric
- Part181.formFactor = Enum.FormFactor.Symmetric
- BlockMesh182.Parent = Part181
- BlockMesh182.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld183.Parent = Part181
- Weld183.C0 = CFrame.new(25.3209457, 0.896676004, 47.8987808, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld183.C1 = CFrame.new(24.3209476, 0.896676004, 48.1987839, -0.674997211, 6.33833988e-05, 0.737820387, 1.73667831e-06, -1, 8.74950783e-05, 0.737820268, 6.03402877e-05, 0.674997211)
- Weld183.Part0 = Part181
- Weld183.Part1 = Part151
- Weld183.part1 = Part151
- Weld184.Parent = Part181
- Weld184.C0 = CFrame.new(-31.0983562, -0.899998426, 40.5006714, 1.17469872e-05, 2.6696092e-15, -1, 4.58271615e-10, 1, 8.05292011e-15, 1, -4.58271643e-10, 1.17469863e-05)
- Weld184.C1 = CFrame.new(-32.0983849, -0.899998546, 40.8006668, 1.16537585e-05, 2.6272243e-15, -1, 4.54633636e-10, 1, 7.92541454e-15, 1, -4.54633664e-10, 1.16537594e-05)
- Weld184.Part0 = Part181
- Weld184.Part1 = Part151
- Weld184.part1 = Part151
- Weld185.Parent = Part181
- Weld185.C0 = CFrame.new(26.2709103, 0.888669133, -58.7754517, 0.835119128, 4.95344793e-05, -0.550070643, 1.76351987e-05, -1, -6.32772935e-05, -0.55006969, 4.31434455e-05, -0.83511889)
- Weld185.C1 = CFrame.new(25.270895, 0.888669074, -58.4754601, 0.835119188, 4.95344757e-05, -0.550070584, 1.76352005e-05, -1, -6.32772935e-05, -0.55006963, 4.31434455e-05, -0.835118949)
- Weld185.Part0 = Part181
- Weld185.Part1 = Part151
- Weld185.part1 = Part151
- Part186.Name = "Part2"
- Part186.Parent = Part19
- Part186.CFrame = CFrame.new(-1.82042062, 1.1203891, 10.8643932, -0.534112215, -7.00583769e-05, 0.845420599, 0.000165999969, -1, 2.20054226e-05, 0.8454144, 0.000152092383, 0.534111142)
- Part186.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part186.Position = Vector3.new(-1.82042062, 1.1203891, 10.8643932)
- Part186.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part186.Color = Color3.new(0, 1, 1)
- Part186.Velocity = Vector3.new(0.00254279817, -0.0114025353, 0.00364209781)
- Part186.Size = Vector3.new(1, 1, 1)
- Part186.BackSurface = Enum.SurfaceType.Weld
- Part186.BottomSurface = Enum.SurfaceType.Weld
- Part186.BrickColor = BrickColor.new("Toothpaste")
- Part186.CanCollide = false
- Part186.FrontSurface = Enum.SurfaceType.Weld
- Part186.LeftSurface = Enum.SurfaceType.Weld
- Part186.Reflectance = 0.40000000596046
- Part186.RightSurface = Enum.SurfaceType.Weld
- Part186.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part186.TopSurface = Enum.SurfaceType.Weld
- Part186.brickColor = BrickColor.new("Toothpaste")
- Part186.FormFactor = Enum.FormFactor.Symmetric
- Part186.formFactor = Enum.FormFactor.Symmetric
- BlockMesh187.Parent = Part186
- BlockMesh187.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld188.Parent = Part186
- Weld188.C0 = CFrame.new(46.898777, 0.896675885, -25.9209499, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld188.C1 = CFrame.new(47.2987747, 0.896675885, -25.5209465, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld188.Part0 = Part186
- Weld188.Part1 = Part196
- Weld188.part1 = Part196
- Weld189.Parent = Part186
- Weld189.C0 = CFrame.new(39.4999123, -0.89999789, 30.4988613, 1, 7.74775966e-10, -1.98588332e-05, -7.74775966e-10, 1, 2.3114284e-14, 1.9858835e-05, -7.72813464e-15, 1)
- Weld189.C1 = CFrame.new(39.8998871, -0.89999789, 30.8988895, 1, 7.71137987e-10, -1.97655972e-05, -7.71137987e-10, 1, 2.28979026e-14, 1.97655991e-05, -7.65589798e-15, 1)
- Weld189.Part0 = Part186
- Weld189.Part1 = Part196
- Weld189.part1 = Part196
- Weld190.Parent = Part186
- Weld190.C0 = CFrame.new(-59.7754517, 0.888669133, -26.8709068, -0.55006969, 4.31434455e-05, -0.83511889, 1.76351987e-05, -1, -6.32772935e-05, -0.835119128, -4.95344793e-05, 0.550070643)
- Weld190.C1 = CFrame.new(-59.3754616, 0.888669133, -26.47089, -0.550069749, 4.31434455e-05, -0.83511883, 1.76352005e-05, -1, -6.32772935e-05, -0.835119009, -4.95344648e-05, 0.550070465)
- Weld190.Part0 = Part186
- Weld190.Part1 = Part196
- Weld190.part1 = Part196
- Part191.Name = "Part2"
- Part191.Parent = Part19
- Part191.CFrame = CFrame.new(-2.00709581, 1.12027645, 10.0366936, -0.534118712, -7.00585224e-05, 0.845436215, 0.000165999911, -1, 2.20048187e-05, 0.845413208, 0.000152092631, 0.53411442)
- Part191.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part191.Position = Vector3.new(-2.00709581, 1.12027645, 10.0366936)
- Part191.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part191.Color = Color3.new(0, 1, 1)
- Part191.Velocity = Vector3.new(0.00447041728, -0.00943789072, 0.00320708519)
- Part191.Size = Vector3.new(1, 1, 1)
- Part191.BackSurface = Enum.SurfaceType.Weld
- Part191.BottomSurface = Enum.SurfaceType.Weld
- Part191.BrickColor = BrickColor.new("Toothpaste")
- Part191.CanCollide = false
- Part191.FrontSurface = Enum.SurfaceType.Weld
- Part191.LeftSurface = Enum.SurfaceType.Weld
- Part191.Reflectance = 0.40000000596046
- Part191.RightSurface = Enum.SurfaceType.Weld
- Part191.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part191.TopSurface = Enum.SurfaceType.Weld
- Part191.brickColor = BrickColor.new("Toothpaste")
- Part191.FormFactor = Enum.FormFactor.Symmetric
- Part191.formFactor = Enum.FormFactor.Symmetric
- BlockMesh192.Parent = Part191
- BlockMesh192.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld193.Parent = Part191
- Weld193.C0 = CFrame.new(-15.9000006, -0.900000215, -45.1000023, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- Weld193.C1 = CFrame.new(-16.7000008, -0.900000215, -45.7999992, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- Weld193.Part0 = Part191
- Weld193.Part1 = Part256
- Weld193.part1 = Part256
- Weld194.Parent = Part191
- Weld194.C0 = CFrame.new(40.0998878, -0.899997771, 31.0988598, 1, 8.00241817e-10, -2.05114848e-05, -8.00241817e-10, 1, 2.46574391e-14, 2.05114829e-05, -8.24328991e-15, 1)
- Weld194.C1 = CFrame.new(39.2999153, -0.899997771, 30.3988285, 1, 7.96603838e-10, -2.04182488e-05, -7.96603838e-10, 1, 2.44339376e-14, 2.04182488e-05, -8.16868325e-15, 1)
- Weld194.Part0 = Part191
- Weld194.Part1 = Part256
- Weld194.part1 = Part256
- Weld195.Parent = Part191
- Weld195.C0 = CFrame.new(-59.1754227, 0.888669372, -26.2709923, -0.550069332, 4.31434455e-05, -0.835119247, 1.76352023e-05, -1, -6.32772935e-05, -0.835119605, -4.95344939e-05, 0.550070763)
- Weld195.C1 = CFrame.new(-59.9754219, 0.888669312, -26.9709892, -0.550069332, 4.31434455e-05, -0.835119247, 1.76352023e-05, -1, -6.32772935e-05, -0.835119605, -4.95344939e-05, 0.550070763)
- Weld195.Part0 = Part191
- Weld195.Part1 = Part256
- Weld195.part1 = Part256
- Part196.Name = "Part2"
- Part196.Parent = Part19
- Part196.CFrame = CFrame.new(-1.94496799, 1.12031388, 10.3125792, -0.534111619, -7.00583623e-05, 0.845419109, 0.000165999969, -1, 2.20054935e-05, 0.845414519, 0.000152092369, 0.534110844)
- Part196.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part196.Position = Vector3.new(-1.94496799, 1.12031388, 10.3125792)
- Part196.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part196.Color = Color3.new(0, 1, 1)
- Part196.Velocity = Vector3.new(0.00382791134, -0.0100929877, 0.00335186254)
- Part196.Size = Vector3.new(1, 1, 1)
- Part196.BackSurface = Enum.SurfaceType.Weld
- Part196.BottomSurface = Enum.SurfaceType.Weld
- Part196.BrickColor = BrickColor.new("Toothpaste")
- Part196.CanCollide = false
- Part196.FrontSurface = Enum.SurfaceType.Weld
- Part196.LeftSurface = Enum.SurfaceType.Weld
- Part196.Reflectance = 0.40000000596046
- Part196.RightSurface = Enum.SurfaceType.Weld
- Part196.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part196.TopSurface = Enum.SurfaceType.Weld
- Part196.brickColor = BrickColor.new("Toothpaste")
- Part196.FormFactor = Enum.FormFactor.Symmetric
- Part196.formFactor = Enum.FormFactor.Symmetric
- BlockMesh197.Parent = Part196
- BlockMesh197.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld198.Parent = Part196
- Weld198.C0 = CFrame.new(39.8998871, -0.89999789, 30.8988895, 1, 7.71137987e-10, -1.97655972e-05, -7.71137987e-10, 1, 2.28979026e-14, 1.97655991e-05, -7.65589798e-15, 1)
- Weld198.C1 = CFrame.new(38.6999512, -0.89999783, 29.4988232, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld198.Part0 = Part196
- Weld198.Part1 = Part266
- Weld198.part1 = Part266
- Weld199.Parent = Part196
- Weld199.C0 = CFrame.new(39.8998871, -0.89999789, 30.8988895, 1, 7.71137987e-10, -1.97655972e-05, -7.71137987e-10, 1, 2.28979026e-14, 1.97655991e-05, -7.65589798e-15, 1)
- Weld199.C1 = CFrame.new(38.6999512, -0.89999783, 29.4988232, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld199.Part0 = Part196
- Weld199.Part1 = Part266
- Weld199.part1 = Part266
- Weld200.Parent = Part196
- Weld200.C0 = CFrame.new(-59.3754616, 0.888669133, -26.47089, -0.550069749, 4.31434455e-05, -0.83511883, 1.76352005e-05, -1, -6.32772935e-05, -0.835119009, -4.95344648e-05, 0.550070465)
- Weld200.C1 = CFrame.new(-60.5754013, 0.888669193, -27.8709469, -0.550069809, 4.31434455e-05, -0.835118771, 1.76351987e-05, -1, -6.32772935e-05, -0.835118949, -4.95344684e-05, 0.550070524)
- Weld200.Part0 = Part196
- Weld200.Part1 = Part266
- Weld200.part1 = Part266
- Part201.Name = "Part2"
- Part201.Parent = Part19
- Part201.CFrame = CFrame.new(-2.05631733, 1.12049091, 11.4250488, -0.534119248, -7.00585515e-05, 0.845438421, 0.00016599994, -1, 2.20046786e-05, 0.845413268, 0.000152092674, 0.53411454)
- Part201.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part201.Position = Vector3.new(-2.05631733, 1.12049091, 11.4250488)
- Part201.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part201.Color = Color3.new(0, 1, 1)
- Part201.Velocity = Vector3.new(0.00123702688, -0.013690982, 0.00309310853)
- Part201.Size = Vector3.new(1, 1, 1)
- Part201.BackSurface = Enum.SurfaceType.Weld
- Part201.BottomSurface = Enum.SurfaceType.Weld
- Part201.BrickColor = BrickColor.new("Toothpaste")
- Part201.CanCollide = false
- Part201.FrontSurface = Enum.SurfaceType.Weld
- Part201.LeftSurface = Enum.SurfaceType.Weld
- Part201.Reflectance = 0.40000000596046
- Part201.RightSurface = Enum.SurfaceType.Weld
- Part201.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part201.TopSurface = Enum.SurfaceType.Weld
- Part201.brickColor = BrickColor.new("Toothpaste")
- Part201.FormFactor = Enum.FormFactor.Symmetric
- Part201.formFactor = Enum.FormFactor.Symmetric
- BlockMesh202.Parent = Part201
- BlockMesh202.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld203.Parent = Part201
- Weld203.C0 = CFrame.new(46.2987862, 0.896675885, -26.0209484, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld203.C1 = CFrame.new(45.6987801, 0.896675885, -27.1209488, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld203.Part0 = Part201
- Weld203.Part1 = Part241
- Weld203.part1 = Part241
- Weld204.Parent = Part201
- Weld204.C0 = CFrame.new(38.8999367, -0.89999783, 30.3988743, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld204.C1 = CFrame.new(38.2999687, -0.89999783, 29.2988224, 1, 7.56586072e-10, -1.93926535e-05, -7.56586072e-10, 1, 2.20425552e-14, 1.93926535e-05, -7.37034538e-15, 1)
- Weld204.Part0 = Part201
- Weld204.Part1 = Part241
- Weld204.part1 = Part241
- Weld205.Parent = Part201
- Weld205.C0 = CFrame.new(-60.3754616, 0.888669133, -26.9708862, -0.550069749, 4.31434455e-05, -0.83511883, 1.76352005e-05, -1, -6.32772935e-05, -0.835119009, -4.95344648e-05, 0.550070465)
- Weld205.C1 = CFrame.new(-60.9754028, 0.888669133, -28.0709057, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld205.Part0 = Part201
- Weld205.Part1 = Part241
- Weld205.part1 = Part241
- Part206.Name = "Part2"
- Part206.Parent = Part19
- Part206.CFrame = CFrame.new(-2.13167667, 1.12020123, 9.48487282, -0.534115672, -7.00584424e-05, 0.845428765, 0.00016599994, -1, 2.20051043e-05, 0.845413566, 0.0001520925, 0.534112871)
- Part206.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part206.Position = Vector3.new(-2.13167667, 1.12020123, 9.48487282)
- Part206.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part206.Color = Color3.new(0, 1, 1)
- Part206.Velocity = Vector3.new(0.00575554604, -0.00812841207, 0.00291677169)
- Part206.Size = Vector3.new(1, 1, 1)
- Part206.BackSurface = Enum.SurfaceType.Weld
- Part206.BottomSurface = Enum.SurfaceType.Weld
- Part206.BrickColor = BrickColor.new("Toothpaste")
- Part206.CanCollide = false
- Part206.FrontSurface = Enum.SurfaceType.Weld
- Part206.LeftSurface = Enum.SurfaceType.Weld
- Part206.Reflectance = 0.40000000596046
- Part206.RightSurface = Enum.SurfaceType.Weld
- Part206.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part206.TopSurface = Enum.SurfaceType.Weld
- Part206.brickColor = BrickColor.new("Toothpaste")
- Part206.FormFactor = Enum.FormFactor.Symmetric
- Part206.formFactor = Enum.FormFactor.Symmetric
- BlockMesh207.Parent = Part206
- BlockMesh207.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld208.Parent = Part206
- Weld208.C0 = CFrame.new(40.4998665, -0.899997771, 31.4988976, 1, 7.89327881e-10, -2.02317769e-05, -7.89327881e-10, 1, 2.39899822e-14, 2.02317769e-05, -8.02047366e-15, 1)
- Weld208.C1 = CFrame.new(40.6998634, -0.899997771, 31.6989098, 1, 7.85689902e-10, -2.0138541e-05, -7.85689902e-10, 1, 2.37695317e-14, 2.0138541e-05, -7.9468809e-15, 1)
- Weld208.Part0 = Part206
- Weld208.Part1 = Part211
- Weld208.part1 = Part211
- Weld209.Parent = Part206
- Weld209.C0 = CFrame.new(40.4998665, -0.899997771, 31.4988976, 1, 7.89327881e-10, -2.02317769e-05, -7.89327881e-10, 1, 2.39899822e-14, 2.02317769e-05, -8.02047366e-15, 1)
- Weld209.C1 = CFrame.new(40.6998634, -0.899997771, 31.6989098, 1, 7.85689902e-10, -2.0138541e-05, -7.85689902e-10, 1, 2.37695317e-14, 2.0138541e-05, -7.9468809e-15, 1)
- Weld209.Part0 = Part206
- Weld209.Part1 = Part211
- Weld209.part1 = Part211
- Weld210.Parent = Part206
- Weld210.C0 = CFrame.new(-58.7754364, 0.888669312, -25.8709583, -0.550069451, 4.31434455e-05, -0.835119128, 1.76352023e-05, -1, -6.32772935e-05, -0.835119426, -4.9534483e-05, 0.550070643)
- Weld210.C1 = CFrame.new(-58.5754471, 0.888669252, -25.6709385, -0.550069511, 4.31434455e-05, -0.835119069, 1.76352005e-05, -1, -6.32772935e-05, -0.835119367, -4.95344866e-05, 0.550070703)
- Weld210.Part0 = Part206
- Weld210.Part1 = Part211
- Weld210.part1 = Part211
- Part211.Name = "Part2"
- Part211.Parent = Part19
- Part211.CFrame = CFrame.new(-2.19395828, 1.12016356, 9.20896816, -0.534114718, -7.00584205e-05, 0.845426559, 0.000165999954, -1, 2.20051843e-05, 0.845413744, 0.000152092456, 0.534112394)
- Part211.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part211.Position = Vector3.new(-2.19395828, 1.12016356, 9.20896816)
- Part211.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part211.Color = Color3.new(0, 1, 1)
- Part211.Velocity = Vector3.new(0.00639809715, -0.00747366622, 0.00277163531)
- Part211.Size = Vector3.new(1, 1, 1)
- Part211.BackSurface = Enum.SurfaceType.Weld
- Part211.BottomSurface = Enum.SurfaceType.Weld
- Part211.BrickColor = BrickColor.new("Toothpaste")
- Part211.CanCollide = false
- Part211.FrontSurface = Enum.SurfaceType.Weld
- Part211.LeftSurface = Enum.SurfaceType.Weld
- Part211.Reflectance = 0.40000000596046
- Part211.RightSurface = Enum.SurfaceType.Weld
- Part211.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part211.TopSurface = Enum.SurfaceType.Weld
- Part211.brickColor = BrickColor.new("Toothpaste")
- Part211.FormFactor = Enum.FormFactor.Symmetric
- Part211.formFactor = Enum.FormFactor.Symmetric
- BlockMesh212.Parent = Part211
- BlockMesh212.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld213.Parent = Part211
- Weld213.C0 = CFrame.new(40.6998634, -0.899997771, 31.6989098, 1, 7.85689902e-10, -2.0138541e-05, -7.85689902e-10, 1, 2.37695317e-14, 2.0138541e-05, -7.9468809e-15, 1)
- Weld213.C1 = CFrame.new(40.8998604, -0.89999789, 31.7989311, 1, 7.82051923e-10, -2.00453051e-05, -7.82051923e-10, 1, 2.35500977e-14, 2.00453069e-05, -7.8736278e-15, 1)
- Weld213.Part0 = Part211
- Weld213.Part1 = Part231
- Weld213.part1 = Part231
- Weld214.Parent = Part211
- Weld214.C0 = CFrame.new(40.6998634, -0.899997771, 31.6989098, 1, 7.85689902e-10, -2.0138541e-05, -7.85689902e-10, 1, 2.37695317e-14, 2.0138541e-05, -7.9468809e-15, 1)
- Weld214.C1 = CFrame.new(40.8998604, -0.89999789, 31.7989311, 1, 7.82051923e-10, -2.00453051e-05, -7.82051923e-10, 1, 2.35500977e-14, 2.00453069e-05, -7.8736278e-15, 1)
- Weld214.Part0 = Part211
- Weld214.Part1 = Part231
- Weld214.part1 = Part231
- Weld215.Parent = Part211
- Weld215.C0 = CFrame.new(-58.5754471, 0.888669252, -25.6709385, -0.550069511, 4.31434455e-05, -0.835119069, 1.76352005e-05, -1, -6.32772935e-05, -0.835119367, -4.95344866e-05, 0.550070703)
- Weld215.C1 = CFrame.new(-58.3754501, 0.888669133, -25.5709095, -0.550069571, 4.31434455e-05, -0.835119009, 1.76351987e-05, -1, -6.32772935e-05, -0.835119307, -4.95344902e-05, 0.550070763)
- Weld215.Part0 = Part211
- Weld215.Part1 = Part231
- Weld215.part1 = Part231
- Part216.Name = "Part2"
- Part216.Parent = Part19
- Part216.CFrame = CFrame.new(-1.8826983, 1.12035155, 10.5884905, -0.53411299, -7.00583842e-05, 0.845422328, 0.000165999969, -1, 2.20053571e-05, 0.845414162, 0.000152092398, 0.534111559)
- Part216.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part216.Position = Vector3.new(-1.8826983, 1.12035155, 10.5884905)
- Part216.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part216.Color = Color3.new(0, 1, 1)
- Part216.Velocity = Vector3.new(0.00318534463, -0.0107477847, 0.00349697098)
- Part216.Size = Vector3.new(1, 1, 1)
- Part216.BackSurface = Enum.SurfaceType.Weld
- Part216.BottomSurface = Enum.SurfaceType.Weld
- Part216.BrickColor = BrickColor.new("Toothpaste")
- Part216.CanCollide = false
- Part216.FrontSurface = Enum.SurfaceType.Weld
- Part216.LeftSurface = Enum.SurfaceType.Weld
- Part216.Reflectance = 0.40000000596046
- Part216.RightSurface = Enum.SurfaceType.Weld
- Part216.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part216.TopSurface = Enum.SurfaceType.Weld
- Part216.brickColor = BrickColor.new("Toothpaste")
- Part216.FormFactor = Enum.FormFactor.Symmetric
- Part216.formFactor = Enum.FormFactor.Symmetric
- BlockMesh217.Parent = Part216
- BlockMesh217.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld218.Parent = Part216
- Weld218.C0 = CFrame.new(39.6999016, -0.89999789, 30.6988811, 1, 7.78413944e-10, -1.99520691e-05, -7.78413944e-10, 1, 2.33316818e-14, 1.99520709e-05, -7.80070927e-15, 1)
- Weld218.C1 = CFrame.new(39.4999123, -0.89999789, 30.4988613, 1, 7.74775966e-10, -1.98588332e-05, -7.74775966e-10, 1, 2.3114284e-14, 1.9858835e-05, -7.72813464e-15, 1)
- Weld218.Part0 = Part216
- Weld218.Part1 = Part186
- Weld218.part1 = Part186
- Weld219.Parent = Part216
- Weld219.C0 = CFrame.new(39.6999016, -0.89999789, 30.6988811, 1, 7.78413944e-10, -1.99520691e-05, -7.78413944e-10, 1, 2.33316818e-14, 1.99520709e-05, -7.80070927e-15, 1)
- Weld219.C1 = CFrame.new(39.4999123, -0.89999789, 30.4988613, 1, 7.74775966e-10, -1.98588332e-05, -7.74775966e-10, 1, 2.3114284e-14, 1.9858835e-05, -7.72813464e-15, 1)
- Weld219.Part0 = Part216
- Weld219.Part1 = Part186
- Weld219.part1 = Part186
- Weld220.Parent = Part216
- Weld220.C0 = CFrame.new(-59.5754623, 0.888669133, -26.6708946, -0.55006963, 4.31434455e-05, -0.835118949, 1.76352005e-05, -1, -6.32772935e-05, -0.835119188, -4.95344757e-05, 0.550070584)
- Weld220.C1 = CFrame.new(-59.7754517, 0.888669133, -26.8709068, -0.55006969, 4.31434455e-05, -0.83511889, 1.76351987e-05, -1, -6.32772935e-05, -0.835119128, -4.95344793e-05, 0.550070643)
- Weld220.Part0 = Part216
- Weld220.Part1 = Part186
- Weld220.part1 = Part186
- Part221.Name = "Part2"
- Part221.Parent = Part19
- Part221.CFrame = CFrame.new(-2.0693891, 1.12023878, 9.76078987, -0.534116626, -7.00584642e-05, 0.84543097, 0.000165999925, -1, 2.20050279e-05, 0.845413387, 0.000152092543, 0.534113348)
- Part221.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part221.Position = Vector3.new(-2.0693891, 1.12023878, 9.76078987)
- Part221.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part221.Color = Color3.new(0, 1, 1)
- Part221.Velocity = Vector3.new(0.00511296652, -0.00878317934, 0.00306192157)
- Part221.Size = Vector3.new(1, 1, 1)
- Part221.BackSurface = Enum.SurfaceType.Weld
- Part221.BottomSurface = Enum.SurfaceType.Weld
- Part221.BrickColor = BrickColor.new("Toothpaste")
- Part221.CanCollide = false
- Part221.FrontSurface = Enum.SurfaceType.Weld
- Part221.LeftSurface = Enum.SurfaceType.Weld
- Part221.Reflectance = 0.40000000596046
- Part221.RightSurface = Enum.SurfaceType.Weld
- Part221.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part221.TopSurface = Enum.SurfaceType.Weld
- Part221.brickColor = BrickColor.new("Toothpaste")
- Part221.FormFactor = Enum.FormFactor.Symmetric
- Part221.formFactor = Enum.FormFactor.Symmetric
- BlockMesh222.Parent = Part221
- BlockMesh222.Scale = Vector3.new(0.200000003, 0.200000003, 0.600000024)
- Weld223.Parent = Part221
- Weld223.C0 = CFrame.new(40.2998695, -0.899997771, 31.2988834, 1, 7.9296586e-10, -2.03250129e-05, -7.9296586e-10, 1, 2.42114509e-14, 2.03250129e-05, -8.09440609e-15, 1)
- Weld223.C1 = CFrame.new(40.4998665, -0.899997771, 31.4988976, 1, 7.89327881e-10, -2.02317769e-05, -7.89327881e-10, 1, 2.39899822e-14, 2.02317769e-05, -8.02047366e-15, 1)
- Weld223.Part0 = Part221
- Weld223.Part1 = Part206
- Weld223.part1 = Part206
- Weld224.Parent = Part221
- Weld224.C0 = CFrame.new(40.2998695, -0.899997771, 31.2988834, 1, 7.9296586e-10, -2.03250129e-05, -7.9296586e-10, 1, 2.42114509e-14, 2.03250129e-05, -8.09440609e-15, 1)
- Weld224.C1 = CFrame.new(40.4998665, -0.899997771, 31.4988976, 1, 7.89327881e-10, -2.02317769e-05, -7.89327881e-10, 1, 2.39899822e-14, 2.02317769e-05, -8.02047366e-15, 1)
- Weld224.Part0 = Part221
- Weld224.Part1 = Part206
- Weld224.part1 = Part206
- Weld225.Parent = Part221
- Weld225.C0 = CFrame.new(-58.9754333, 0.888669312, -26.070982, -0.550069392, 4.31434455e-05, -0.835119188, 1.76352041e-05, -1, -6.32772935e-05, -0.835119486, -4.95344793e-05, 0.550070584)
- Weld225.C1 = CFrame.new(-58.7754364, 0.888669312, -25.8709583, -0.550069451, 4.31434455e-05, -0.835119128, 1.76352023e-05, -1, -6.32772935e-05, -0.835119426, -4.9534483e-05, 0.550070643)
- Weld225.Part0 = Part221
- Weld225.Part1 = Part206
- Weld225.part1 = Part206
- Part226.Name = "Part2"
- Part226.Parent = Part19
- Part226.CFrame = CFrame.new(-1.03714371, 1.12037349, 11.1225548, -0.53412044, -7.00585952e-05, 0.845441937, 0.000165999954, -1, 2.20045058e-05, 0.845413148, 0.000152092718, 0.534115076)
- Part226.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part226.Position = Vector3.new(-1.03714371, 1.12037349, 11.1225548)
- Part226.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part226.Color = Color3.new(0, 1, 1)
- Part226.Velocity = Vector3.new(0.00194170291, -0.010099018, 0.00546593359)
- Part226.Size = Vector3.new(1, 1, 1)
- Part226.BackSurface = Enum.SurfaceType.Weld
- Part226.BottomSurface = Enum.SurfaceType.Weld
- Part226.BrickColor = BrickColor.new("Toothpaste")
- Part226.CanCollide = false
- Part226.FrontSurface = Enum.SurfaceType.Weld
- Part226.LeftSurface = Enum.SurfaceType.Weld
- Part226.Reflectance = 0.40000000596046
- Part226.RightSurface = Enum.SurfaceType.Weld
- Part226.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part226.TopSurface = Enum.SurfaceType.Weld
- Part226.brickColor = BrickColor.new("Toothpaste")
- Part226.FormFactor = Enum.FormFactor.Symmetric
- Part226.formFactor = Enum.FormFactor.Symmetric
- BlockMesh227.Parent = Part226
- BlockMesh227.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld228.Parent = Part226
- Weld228.C0 = CFrame.new(39.6999664, -0.899998069, 29.6989117, 1, 7.02016389e-10, -1.79941126e-05, -7.02016389e-10, 1, 1.89800026e-14, 1.79941144e-05, -6.34784024e-15, 1)
- Weld228.C1 = CFrame.new(39.3999557, -0.899998009, 29.8988304, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld228.Part0 = Part226
- Weld228.Part1 = Part236
- Weld228.part1 = Part236
- Weld229.Parent = Part226
- Weld229.C0 = CFrame.new(39.6999664, -0.899998069, 29.6989117, 1, 7.02016389e-10, -1.79941126e-05, -7.02016389e-10, 1, 1.89800026e-14, 1.79941144e-05, -6.34784024e-15, 1)
- Weld229.C1 = CFrame.new(39.3999557, -0.899998009, 29.8988304, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld229.Part0 = Part226
- Weld229.Part1 = Part236
- Weld229.part1 = Part236
- Weld230.Parent = Part226
- Weld230.C0 = CFrame.new(-59.5754013, 0.888669133, -27.6709023, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld230.C1 = CFrame.new(-59.8754578, 0.888669133, -27.4708881, -0.550069749, 4.31434455e-05, -0.83511883, 1.76352005e-05, -1, -6.32772935e-05, -0.835119009, -4.95344648e-05, 0.550070465)
- Weld230.Part0 = Part226
- Weld230.Part1 = Part236
- Weld230.part1 = Part236
- Part231.Name = "Part2"
- Part231.Parent = Part19
- Part231.CFrame = CFrame.new(-2.17170095, 1.12012815, 8.98646355, -0.534113765, -7.0058406e-05, 0.845424354, 0.000165999954, -1, 2.2005268e-05, 0.845413923, 0.000152092427, 0.534111917)
- Part231.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part231.Position = Vector3.new(-2.17170095, 1.12012815, 8.98646355)
- Part231.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part231.Color = Color3.new(0, 1, 1)
- Part231.Velocity = Vector3.new(0.006916299, -0.00675406866, 0.002823357)
- Part231.Size = Vector3.new(1, 1, 1)
- Part231.BackSurface = Enum.SurfaceType.Weld
- Part231.BottomSurface = Enum.SurfaceType.Weld
- Part231.BrickColor = BrickColor.new("Toothpaste")
- Part231.CanCollide = false
- Part231.FrontSurface = Enum.SurfaceType.Weld
- Part231.LeftSurface = Enum.SurfaceType.Weld
- Part231.Reflectance = 0.40000000596046
- Part231.RightSurface = Enum.SurfaceType.Weld
- Part231.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part231.TopSurface = Enum.SurfaceType.Weld
- Part231.brickColor = BrickColor.new("Toothpaste")
- Part231.FormFactor = Enum.FormFactor.Symmetric
- Part231.formFactor = Enum.FormFactor.Symmetric
- BlockMesh232.Parent = Part231
- BlockMesh232.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld233.Parent = Part231
- Weld233.C0 = CFrame.new(48.2987823, 0.896675885, -24.6209469, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld233.C1 = CFrame.new(47.0987816, 0.896675885, -25.7209435, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld233.Part0 = Part231
- Weld233.Part1 = Part216
- Weld233.part1 = Part216
- Weld234.Parent = Part231
- Weld234.C0 = CFrame.new(40.8998604, -0.89999789, 31.7989311, 1, 7.82051923e-10, -2.00453051e-05, -7.82051923e-10, 1, 2.35500977e-14, 2.00453069e-05, -7.8736278e-15, 1)
- Weld234.C1 = CFrame.new(39.6999016, -0.89999789, 30.6988811, 1, 7.78413944e-10, -1.99520691e-05, -7.78413944e-10, 1, 2.33316818e-14, 1.99520709e-05, -7.80070927e-15, 1)
- Weld234.Part0 = Part231
- Weld234.Part1 = Part216
- Weld234.part1 = Part216
- Weld235.Parent = Part231
- Weld235.C0 = CFrame.new(-58.3754501, 0.888669133, -25.5709095, -0.550069571, 4.31434455e-05, -0.835119009, 1.76351987e-05, -1, -6.32772935e-05, -0.835119307, -4.95344902e-05, 0.550070763)
- Weld235.C1 = CFrame.new(-59.5754623, 0.888669133, -26.6708946, -0.55006963, 4.31434455e-05, -0.835118949, 1.76352005e-05, -1, -6.32772935e-05, -0.835119188, -4.95344757e-05, 0.550070584)
- Weld235.Part0 = Part231
- Weld235.Part1 = Part216
- Weld235.part1 = Part216
- Part236.Name = "Part2"
- Part236.Parent = Part19
- Part236.CFrame = CFrame.new(-1.36652386, 1.12041891, 11.2693958, -0.534120321, -7.00585806e-05, 0.845441222, 0.00016599994, -1, 2.20045622e-05, 0.845413089, 0.000152092704, 0.534115136)
- Part236.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part236.Position = Vector3.new(-1.36652386, 1.12041891, 11.2693958)
- Part236.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part236.Color = Color3.new(0, 1, 1)
- Part236.Velocity = Vector3.new(0.00159965944, -0.0114056347, 0.00469909748)
- Part236.Size = Vector3.new(1, 1, 1)
- Part236.BackSurface = Enum.SurfaceType.Weld
- Part236.BottomSurface = Enum.SurfaceType.Weld
- Part236.BrickColor = BrickColor.new("Toothpaste")
- Part236.CanCollide = false
- Part236.FrontSurface = Enum.SurfaceType.Weld
- Part236.LeftSurface = Enum.SurfaceType.Weld
- Part236.Reflectance = 0.40000000596046
- Part236.RightSurface = Enum.SurfaceType.Weld
- Part236.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part236.TopSurface = Enum.SurfaceType.Weld
- Part236.brickColor = BrickColor.new("Toothpaste")
- Part236.FormFactor = Enum.FormFactor.Symmetric
- Part236.formFactor = Enum.FormFactor.Symmetric
- BlockMesh237.Parent = Part236
- BlockMesh237.Scale = Vector3.new(0.400000006, 0.200000003, 0.200000003)
- Weld238.Parent = Part236
- Weld238.C0 = CFrame.new(39.3999557, -0.899998009, 29.8988304, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld238.C1 = CFrame.new(39.0999527, -0.899998009, 30.0988483, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld238.Part0 = Part236
- Weld238.Part1 = Part246
- Weld238.part1 = Part246
- Weld239.Parent = Part236
- Weld239.C0 = CFrame.new(39.3999557, -0.899998009, 29.8988304, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld239.C1 = CFrame.new(39.0999527, -0.899998009, 30.0988483, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld239.Part0 = Part236
- Weld239.Part1 = Part246
- Weld239.part1 = Part246
- Weld240.Parent = Part236
- Weld240.C0 = CFrame.new(-59.8754578, 0.888669133, -27.4708881, -0.550069749, 4.31434455e-05, -0.83511883, 1.76352005e-05, -1, -6.32772935e-05, -0.835119009, -4.95344648e-05, 0.550070465)
- Weld240.C1 = CFrame.new(-60.1754456, 0.888669014, -27.2709217, -0.55006969, 4.31434455e-05, -0.83511889, 1.76352023e-05, -1, -6.32772935e-05, -0.835119069, -4.95344611e-05, 0.550070405)
- Weld240.Part0 = Part236
- Weld240.Part1 = Part246
- Weld240.part1 = Part246
- Part241.Name = "Part2"
- Part241.Parent = Part19
- Part241.CFrame = CFrame.new(-1.44674909, 1.12061465, 12.5197849, -0.534118831, -7.00585515e-05, 0.845437884, 0.000165999954, -1, 2.20046841e-05, 0.845413387, 0.000152092674, 0.534114301)
- Part241.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part241.Position = Vector3.new(-1.44674909, 1.12061465, 12.5197849)
- Part241.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part241.Color = Color3.new(0, 1, 1)
- Part241.Velocity = Vector3.new(-0.0013124235, -0.0153309498, 0.00451287255)
- Part241.Size = Vector3.new(1, 1, 1)
- Part241.BackSurface = Enum.SurfaceType.Weld
- Part241.BottomSurface = Enum.SurfaceType.Weld
- Part241.BrickColor = BrickColor.new("Toothpaste")
- Part241.CanCollide = false
- Part241.FrontSurface = Enum.SurfaceType.Weld
- Part241.LeftSurface = Enum.SurfaceType.Weld
- Part241.Reflectance = 0.40000000596046
- Part241.RightSurface = Enum.SurfaceType.Weld
- Part241.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part241.TopSurface = Enum.SurfaceType.Weld
- Part241.brickColor = BrickColor.new("Toothpaste")
- Part241.FormFactor = Enum.FormFactor.Symmetric
- Part241.formFactor = Enum.FormFactor.Symmetric
- BlockMesh242.Parent = Part241
- BlockMesh242.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld243.Parent = Part241
- Weld243.C0 = CFrame.new(-17.7000008, -0.900000215, -46.9000015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- Weld243.C1 = CFrame.new(-17.2999992, -0.900000215, -45.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- Weld243.Part0 = Part241
- Weld243.Part1 = Part251
- Weld243.part1 = Part251
- Weld244.Parent = Part241
- Weld244.C0 = CFrame.new(38.2999687, -0.89999783, 29.2988224, 1, 7.56586072e-10, -1.93926535e-05, -7.56586072e-10, 1, 2.20425552e-14, 1.93926535e-05, -7.37034538e-15, 1)
- Weld244.C1 = CFrame.new(38.6999245, -0.89999783, 30.6988983, 1, 7.52948093e-10, -1.92994175e-05, -7.52948093e-10, 1, 2.18312612e-14, 1.92994175e-05, -7.29980109e-15, 1)
- Weld244.Part0 = Part241
- Weld244.Part1 = Part251
- Weld244.part1 = Part251
- Weld245.Parent = Part241
- Weld245.C0 = CFrame.new(-60.9754028, 0.888669133, -28.0709057, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld245.C1 = CFrame.new(-60.5754013, 0.888669133, -26.6709061, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld245.Part0 = Part241
- Weld245.Part1 = Part251
- Weld245.part1 = Part251
- Part246.Name = "Part2"
- Part246.Parent = Part19
- Part246.CFrame = CFrame.new(-1.69582343, 1.12046421, 11.4162064, -0.534119844, -7.00585661e-05, 0.845439792, 0.00016599994, -1, 2.2004635e-05, 0.845413148, 0.000152092689, 0.534114897)
- Part246.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part246.Position = Vector3.new(-1.69582343, 1.12046421, 11.4162064)
- Part246.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part246.Color = Color3.new(0, 1, 1)
- Part246.Velocity = Vector3.new(0.00125768734, -0.0127119478, 0.00393244904)
- Part246.Size = Vector3.new(1, 1, 1)
- Part246.BackSurface = Enum.SurfaceType.Weld
- Part246.BottomSurface = Enum.SurfaceType.Weld
- Part246.BrickColor = BrickColor.new("Toothpaste")
- Part246.CanCollide = false
- Part246.FrontSurface = Enum.SurfaceType.Weld
- Part246.LeftSurface = Enum.SurfaceType.Weld
- Part246.Reflectance = 0.40000000596046
- Part246.RightSurface = Enum.SurfaceType.Weld
- Part246.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part246.TopSurface = Enum.SurfaceType.Weld
- Part246.brickColor = BrickColor.new("Toothpaste")
- Part246.FormFactor = Enum.FormFactor.Symmetric
- Part246.formFactor = Enum.FormFactor.Symmetric
- BlockMesh247.Parent = Part246
- BlockMesh247.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld248.Parent = Part246
- Weld248.C0 = CFrame.new(39.0999527, -0.899998009, 30.0988483, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld248.C1 = CFrame.new(38.8999367, -0.89999783, 30.3988743, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld248.Part0 = Part246
- Weld248.Part1 = Part201
- Weld248.part1 = Part201
- Weld249.Parent = Part246
- Weld249.C0 = CFrame.new(39.0999527, -0.899998009, 30.0988483, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld249.C1 = CFrame.new(38.8999367, -0.89999783, 30.3988743, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld249.Part0 = Part246
- Weld249.Part1 = Part201
- Weld249.part1 = Part201
- Weld250.Parent = Part246
- Weld250.C0 = CFrame.new(-60.1754456, 0.888669014, -27.2709217, -0.55006969, 4.31434455e-05, -0.83511889, 1.76352023e-05, -1, -6.32772935e-05, -0.835119069, -4.95344611e-05, 0.550070405)
- Weld250.C1 = CFrame.new(-60.3754616, 0.888669133, -26.9708862, -0.550069749, 4.31434455e-05, -0.83511883, 1.76352005e-05, -1, -6.32772935e-05, -0.835119009, -4.95344648e-05, 0.550070465)
- Weld250.Part0 = Part246
- Weld250.Part1 = Part201
- Weld250.part1 = Part201
- Part251.Name = "Part2"
- Part251.Parent = Part19
- Part251.CFrame = CFrame.new(-2.41671348, 1.12051737, 11.4338579, -0.534118831, -7.00585515e-05, 0.845437884, 0.000165999954, -1, 2.20046841e-05, 0.845413387, 0.000152092674, 0.534114301)
- Part251.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part251.Position = Vector3.new(-2.41671348, 1.12051737, 11.4338579)
- Part251.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part251.Color = Color3.new(0, 1, 1)
- Part251.Velocity = Vector3.new(0.00121644465, -0.0146696595, 0.00225399458)
- Part251.Size = Vector3.new(1, 1, 1)
- Part251.BackSurface = Enum.SurfaceType.Weld
- Part251.BottomSurface = Enum.SurfaceType.Weld
- Part251.BrickColor = BrickColor.new("Toothpaste")
- Part251.CanCollide = false
- Part251.FrontSurface = Enum.SurfaceType.Weld
- Part251.LeftSurface = Enum.SurfaceType.Weld
- Part251.Reflectance = 0.40000000596046
- Part251.RightSurface = Enum.SurfaceType.Weld
- Part251.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part251.TopSurface = Enum.SurfaceType.Weld
- Part251.brickColor = BrickColor.new("Toothpaste")
- Part251.FormFactor = Enum.FormFactor.Symmetric
- Part251.formFactor = Enum.FormFactor.Symmetric
- BlockMesh252.Parent = Part251
- BlockMesh252.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld253.Parent = Part251
- Weld253.C0 = CFrame.new(46.0987854, 0.896675885, -25.7209473, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld253.C1 = CFrame.new(47.4987831, 0.896675885, -25.3209457, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld253.Part0 = Part251
- Weld253.Part1 = Part191
- Weld253.part1 = Part191
- Weld254.Parent = Part251
- Weld254.C0 = CFrame.new(38.6999245, -0.89999783, 30.6988983, 1, 7.52948093e-10, -1.92994175e-05, -7.52948093e-10, 1, 2.18312612e-14, 1.92994175e-05, -7.29980109e-15, 1)
- Weld254.C1 = CFrame.new(40.0998878, -0.899997771, 31.0988598, 1, 8.00241817e-10, -2.05114848e-05, -8.00241817e-10, 1, 2.46574391e-14, 2.05114829e-05, -8.24328991e-15, 1)
- Weld254.Part0 = Part251
- Weld254.Part1 = Part191
- Weld254.part1 = Part191
- Weld255.Parent = Part251
- Weld255.C0 = CFrame.new(-60.5754013, 0.888669133, -26.6709061, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld255.C1 = CFrame.new(-59.1754227, 0.888669372, -26.2709923, -0.550069332, 4.31434455e-05, -0.835119247, 1.76352023e-05, -1, -6.32772935e-05, -0.835119605, -4.95344939e-05, 0.550070763)
- Weld255.Part0 = Part251
- Weld255.Part1 = Part191
- Weld255.part1 = Part191
- Part256.Name = "Part2"
- Part256.Parent = Part19
- Part256.CFrame = CFrame.new(-1.84259713, 1.12042463, 11.0869007, -0.534117639, -7.00584933e-05, 0.845433474, 0.000165999925, -1, 2.20049315e-05, 0.845413327, 0.000152092587, 0.534113824)
- Part256.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part256.Position = Vector3.new(-1.84259713, 1.12042463, 11.0869007)
- Part256.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part256.Color = Color3.new(0, 1, 1)
- Part256.Velocity = Vector3.new(0.00202458957, -0.012121927, 0.00359056494)
- Part256.Size = Vector3.new(1, 1, 1)
- Part256.BackSurface = Enum.SurfaceType.Weld
- Part256.BottomSurface = Enum.SurfaceType.Weld
- Part256.BrickColor = BrickColor.new("Toothpaste")
- Part256.CanCollide = false
- Part256.FrontSurface = Enum.SurfaceType.Weld
- Part256.LeftSurface = Enum.SurfaceType.Weld
- Part256.Reflectance = 0.40000000596046
- Part256.RightSurface = Enum.SurfaceType.Weld
- Part256.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part256.TopSurface = Enum.SurfaceType.Weld
- Part256.brickColor = BrickColor.new("Toothpaste")
- Part256.FormFactor = Enum.FormFactor.Symmetric
- Part256.formFactor = Enum.FormFactor.Symmetric
- BlockMesh257.Parent = Part256
- BlockMesh257.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
- Weld258.Parent = Part256
- Weld258.C0 = CFrame.new(46.6987839, 0.896675885, -26.0209446, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld258.C1 = CFrame.new(47.6987801, 0.896675885, -25.1209469, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld258.Part0 = Part256
- Weld258.Part1 = Part221
- Weld258.part1 = Part221
- Weld259.Parent = Part256
- Weld259.C0 = CFrame.new(39.2999153, -0.899997771, 30.3988285, 1, 7.96603838e-10, -2.04182488e-05, -7.96603838e-10, 1, 2.44339376e-14, 2.04182488e-05, -8.16868325e-15, 1)
- Weld259.C1 = CFrame.new(40.2998695, -0.899997771, 31.2988834, 1, 7.9296586e-10, -2.03250129e-05, -7.9296586e-10, 1, 2.42114509e-14, 2.03250129e-05, -8.09440609e-15, 1)
- Weld259.Part0 = Part256
- Weld259.Part1 = Part221
- Weld259.part1 = Part221
- Weld260.Parent = Part256
- Weld260.C0 = CFrame.new(-59.9754219, 0.888669312, -26.9709892, -0.550069332, 4.31434455e-05, -0.835119247, 1.76352023e-05, -1, -6.32772935e-05, -0.835119605, -4.95344939e-05, 0.550070763)
- Weld260.C1 = CFrame.new(-58.9754333, 0.888669312, -26.070982, -0.550069392, 4.31434455e-05, -0.835119188, 1.76352041e-05, -1, -6.32772935e-05, -0.835119486, -4.95344793e-05, 0.550070584)
- Weld260.Part0 = Part256
- Weld260.Part1 = Part221
- Weld260.part1 = Part221
- Part261.Name = "Stick"
- Part261.Parent = Part19
- Part261.CFrame = CFrame.new(-1.46451318, 1.12050629, 11.7989082, -0.534110606, -7.00583478e-05, 0.845416725, 0.000165999969, -1, 2.20055899e-05, 0.845414758, 0.00015209234, 0.534110308)
- Part261.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part261.Position = Vector3.new(-1.46451318, 1.12050629, 11.7989082)
- Part261.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part261.Color = Color3.new(0.411765, 0.25098, 0.156863)
- Part261.Velocity = Vector3.new(0.000366444408, -0.0132371131, 0.00447118608)
- Part261.Size = Vector3.new(1, 1, 1)
- Part261.BackSurface = Enum.SurfaceType.Weld
- Part261.BottomSurface = Enum.SurfaceType.Weld
- Part261.BrickColor = BrickColor.new("Reddish brown")
- Part261.CanCollide = false
- Part261.FrontSurface = Enum.SurfaceType.Weld
- Part261.LeftSurface = Enum.SurfaceType.Weld
- Part261.RightSurface = Enum.SurfaceType.Weld
- Part261.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part261.TopSurface = Enum.SurfaceType.Weld
- Part261.brickColor = BrickColor.new("Reddish brown")
- Part261.FormFactor = Enum.FormFactor.Symmetric
- Part261.formFactor = Enum.FormFactor.Symmetric
- BlockMesh262.Parent = Part261
- BlockMesh262.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld263.Parent = Part261
- Weld263.C0 = CFrame.new(38.8999481, -0.89999783, 29.6988354, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld263.C1 = CFrame.new(38.4999542, -0.899997592, 29.6988392, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld263.Part0 = Part261
- Weld263.Part1 = Part271
- Weld263.part1 = Part271
- Weld264.Parent = Part261
- Weld264.C0 = CFrame.new(38.8999481, -0.89999783, 29.6988354, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld264.C1 = CFrame.new(38.4999542, -0.899997592, 29.6988392, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld264.Part0 = Part261
- Weld264.Part1 = Part271
- Weld264.part1 = Part271
- Weld265.Parent = Part261
- Weld265.C0 = CFrame.new(-60.3754044, 0.888669133, -27.6709366, -0.550069869, 4.31434455e-05, -0.835118711, 1.76352005e-05, -1, -6.32772935e-05, -0.83511883, -4.95344539e-05, 0.550070345)
- Weld265.C1 = CFrame.new(-60.7753944, 0.888669372, -27.6709251, -0.550069928, 4.31434455e-05, -0.835118651, 1.76351987e-05, -1, -6.32772935e-05, -0.835118771, -4.95344575e-05, 0.550070405)
- Weld265.Part0 = Part261
- Weld265.Part1 = Part271
- Weld265.part1 = Part271
- Part266.Name = "Stick"
- Part266.Parent = Part19
- Part266.CFrame = CFrame.new(-1.40223598, 1.12054396, 12.074811, -0.534111083, -7.0058355e-05, 0.845417857, 0.000165999983, -1, 2.20055408e-05, 0.845414698, 0.000152092354, 0.534110546)
- Part266.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part266.Position = Vector3.new(-1.40223598, 1.12054396, 12.074811)
- Part266.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part266.Color = Color3.new(0.411765, 0.25098, 0.156863)
- Part266.Velocity = Vector3.new(-0.000276102277, -0.0138918646, 0.00461631222)
- Part266.Size = Vector3.new(1, 1, 1)
- Part266.BackSurface = Enum.SurfaceType.Weld
- Part266.BottomSurface = Enum.SurfaceType.Weld
- Part266.BrickColor = BrickColor.new("Reddish brown")
- Part266.CanCollide = false
- Part266.FrontSurface = Enum.SurfaceType.Weld
- Part266.LeftSurface = Enum.SurfaceType.Weld
- Part266.RightSurface = Enum.SurfaceType.Weld
- Part266.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part266.TopSurface = Enum.SurfaceType.Weld
- Part266.brickColor = BrickColor.new("Reddish brown")
- Part266.FormFactor = Enum.FormFactor.Symmetric
- Part266.formFactor = Enum.FormFactor.Symmetric
- BlockMesh267.Parent = Part266
- BlockMesh267.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld268.Parent = Part266
- Weld268.C0 = CFrame.new(46.0987816, 0.896675885, -26.9209442, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld268.C1 = CFrame.new(46.2987785, 0.896675825, -26.7209396, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld268.Part0 = Part266
- Weld268.Part1 = Part261
- Weld268.part1 = Part261
- Weld269.Parent = Part266
- Weld269.C0 = CFrame.new(38.6999512, -0.89999783, 29.4988232, 1, 7.67500008e-10, -1.96723613e-05, -7.67500008e-10, 1, 2.26825394e-14, 1.96723613e-05, -7.58400182e-15, 1)
- Weld269.C1 = CFrame.new(38.8999481, -0.89999783, 29.6988354, 1, 7.63862029e-10, -1.95791254e-05, -7.63862029e-10, 1, 2.24681961e-14, 1.95791254e-05, -7.51245041e-15, 1)
- Weld269.Part0 = Part266
- Weld269.Part1 = Part261
- Weld269.part1 = Part261
- Weld270.Parent = Part266
- Weld270.C0 = CFrame.new(-60.5754013, 0.888669193, -27.8709469, -0.550069809, 4.31434455e-05, -0.835118771, 1.76351987e-05, -1, -6.32772935e-05, -0.835118949, -4.95344684e-05, 0.550070524)
- Weld270.C1 = CFrame.new(-60.3754044, 0.888669133, -27.6709366, -0.550069869, 4.31434455e-05, -0.835118711, 1.76352005e-05, -1, -6.32772935e-05, -0.83511883, -4.95344539e-05, 0.550070345)
- Weld270.Part0 = Part266
- Weld270.Part1 = Part261
- Weld270.part1 = Part261
- Part271.Name = "Stick"
- Part271.Parent = Part19
- Part271.CFrame = CFrame.new(-1.67815685, 1.12057292, 12.137063, -0.534110188, -7.00583405e-05, 0.84541589, 0.000165999983, -1, 2.2005619e-05, 0.845414877, 0.00015209234, 0.534110129)
- Part271.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part271.Position = Vector3.new(-1.67815685, 1.12057292, 12.137063)
- Part271.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part271.Color = Color3.new(0.411765, 0.25098, 0.156863)
- Part271.Velocity = Vector3.new(-0.000421134522, -0.0148059865, 0.00397390872)
- Part271.Size = Vector3.new(1, 1, 1)
- Part271.BackSurface = Enum.SurfaceType.Weld
- Part271.BottomSurface = Enum.SurfaceType.Weld
- Part271.BrickColor = BrickColor.new("Reddish brown")
- Part271.CanCollide = false
- Part271.FrontSurface = Enum.SurfaceType.Weld
- Part271.LeftSurface = Enum.SurfaceType.Weld
- Part271.RightSurface = Enum.SurfaceType.Weld
- Part271.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part271.TopSurface = Enum.SurfaceType.Weld
- Part271.brickColor = BrickColor.new("Reddish brown")
- Part271.FormFactor = Enum.FormFactor.Symmetric
- Part271.formFactor = Enum.FormFactor.Symmetric
- BlockMesh272.Parent = Part271
- BlockMesh272.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld273.Parent = Part271
- Weld273.C0 = CFrame.new(45.8987808, 0.896676004, -26.7209396, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld273.C1 = CFrame.new(46.0987778, 0.896675825, -26.5209408, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld273.Part0 = Part271
- Weld273.Part1 = Part276
- Weld273.part1 = Part276
- Weld274.Parent = Part271
- Weld274.C0 = CFrame.new(38.4999542, -0.899997592, 29.6988392, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld274.C1 = CFrame.new(38.6999512, -0.89999783, 29.8988514, 1, 7.56586072e-10, -1.93926535e-05, -7.56586072e-10, 1, 2.20425552e-14, 1.93926535e-05, -7.37034538e-15, 1)
- Weld274.Part0 = Part271
- Weld274.Part1 = Part276
- Weld274.part1 = Part276
- Weld275.Parent = Part271
- Weld275.C0 = CFrame.new(-60.7753944, 0.888669372, -27.6709251, -0.550069928, 4.31434455e-05, -0.835118651, 1.76351987e-05, -1, -6.32772935e-05, -0.835118771, -4.95344575e-05, 0.550070405)
- Weld275.C1 = CFrame.new(-60.5753975, 0.888669133, -27.4709148, -0.550069988, 4.31434455e-05, -0.835118592, 1.76352005e-05, -1, -6.32772935e-05, -0.835118651, -4.9534443e-05, 0.550070226)
- Weld275.Part0 = Part271
- Weld275.Part1 = Part276
- Weld275.part1 = Part276
- Part276.Name = "Stick"
- Part276.Parent = Part19
- Part276.CFrame = CFrame.new(-1.74043024, 1.12053514, 11.8611584, -0.53411001, -7.00583405e-05, 0.845415294, 0.000165999998, -1, 2.200565e-05, 0.845414996, 0.00015209234, 0.53411001)
- Part276.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part276.Position = Vector3.new(-1.74043024, 1.12053514, 11.8611584)
- Part276.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part276.Color = Color3.new(0.411765, 0.25098, 0.156863)
- Part276.Velocity = Vector3.new(0.000221416994, -0.0141512193, 0.0038287912)
- Part276.Size = Vector3.new(1, 1, 1)
- Part276.BackSurface = Enum.SurfaceType.Weld
- Part276.BottomSurface = Enum.SurfaceType.Weld
- Part276.BrickColor = BrickColor.new("Reddish brown")
- Part276.CanCollide = false
- Part276.FrontSurface = Enum.SurfaceType.Weld
- Part276.LeftSurface = Enum.SurfaceType.Weld
- Part276.RightSurface = Enum.SurfaceType.Weld
- Part276.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part276.TopSurface = Enum.SurfaceType.Weld
- Part276.brickColor = BrickColor.new("Reddish brown")
- Part276.FormFactor = Enum.FormFactor.Symmetric
- Part276.formFactor = Enum.FormFactor.Symmetric
- BlockMesh277.Parent = Part276
- BlockMesh277.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld278.Parent = Part276
- Weld278.C0 = CFrame.new(46.0987778, 0.896675825, -26.5209408, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld278.C1 = CFrame.new(46.0987778, 0.896675766, -26.7209396, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld278.Part0 = Part276
- Weld278.Part1 = Part280
- Weld278.part1 = Part280
- Weld279.Parent = Part276
- Weld279.C0 = CFrame.new(38.6999512, -0.89999783, 29.8988514, 1, 7.56586072e-10, -1.93926535e-05, -7.56586072e-10, 1, 2.20425552e-14, 1.93926535e-05, -7.37034538e-15, 1)
- Weld279.C1 = CFrame.new(38.6999512, -0.89999795, 29.698843, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld279.Part0 = Part276
- Weld279.Part1 = Part280
- Weld279.part1 = Part280
- Part280.Name = "Stick2"
- Part280.Parent = Part19
- Part280.CFrame = CFrame.new(-1.57133484, 1.12053943, 11.9679832, -0.534110069, -7.00583405e-05, 0.845415235, 0.000165999998, -1, 2.20056663e-05, 0.845414937, 0.00015209234, 0.534110069)
- Part280.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part280.Position = Vector3.new(-1.57133484, 1.12053943, 11.9679832)
- Part280.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part280.Color = Color3.new(0.627451, 0.372549, 0.207843)
- Part280.Velocity = Vector3.new(-2.73390324e-05, -0.0140215429, 0.00422254717)
- Part280.Size = Vector3.new(1, 1, 1)
- Part280.BackSurface = Enum.SurfaceType.Weld
- Part280.BottomSurface = Enum.SurfaceType.Weld
- Part280.BrickColor = BrickColor.new("Dark orange")
- Part280.CanCollide = false
- Part280.FrontSurface = Enum.SurfaceType.Weld
- Part280.LeftSurface = Enum.SurfaceType.Weld
- Part280.RightSurface = Enum.SurfaceType.Weld
- Part280.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part280.TopSurface = Enum.SurfaceType.Weld
- Part280.brickColor = BrickColor.new("Dark orange")
- Part280.FormFactor = Enum.FormFactor.Symmetric
- Part280.formFactor = Enum.FormFactor.Symmetric
- BlockMesh281.Parent = Part280
- BlockMesh281.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld282.Parent = Part280
- Weld282.C0 = CFrame.new(-17.2999992, -0.900000215, -46.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- Weld282.C1 = CFrame.new(-17.1000004, -0.900000215, -46.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- Weld282.Part0 = Part280
- Weld282.Part1 = Part286
- Weld282.part1 = Part286
- Weld283.Parent = Part280
- Weld283.C0 = CFrame.new(46.0987778, 0.896675766, -26.7209396, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld283.C1 = CFrame.new(46.2987747, 0.896675825, -26.5209427, 0.737820268, 6.03402877e-05, 0.674997211, 1.73667831e-06, -1, 8.74950783e-05, 0.674997211, -6.33833988e-05, -0.737820387)
- Weld283.Part0 = Part280
- Weld283.Part1 = Part286
- Weld283.part1 = Part286
- Weld284.Parent = Part280
- Weld284.C0 = CFrame.new(38.6999512, -0.89999795, 29.698843, 1, 7.6022405e-10, -1.94858894e-05, -7.6022405e-10, 1, 2.2254864e-14, 1.94858894e-05, -7.44121748e-15, 1)
- Weld284.C1 = CFrame.new(38.4999771, -0.900000036, 29.4999924, 0.999999523, 7.0485822e-12, -1.86462984e-07, 7.0485822e-12, 1, -3.1797575e-19, -1.86462984e-07, -3.1797575e-19, 1)
- Weld284.Part0 = Part280
- Weld285.Parent = Part280
- Weld285.C0 = CFrame.new(-60.5754013, 0.888669133, -27.6709061, -0.550070047, 4.31434455e-05, -0.835118532, 1.76352023e-05, -1, -6.32772935e-05, -0.835118532, -4.95344284e-05, 0.550070047)
- Weld285.C1 = CFrame.new(-60.7764816, 0.888667047, -27.867815, -0.550085902, 4.314322e-05, -0.835107505, 1.76347803e-05, -1, -6.32779338e-05, -0.835107684, -4.9535276e-05, 0.550086498)
- Weld285.Part0 = Part280
- Part286.Name = "Stick2"
- Part286.Parent = Part19
- Part286.CFrame = CFrame.new(-1.63360298, 1.120502, 11.6920776, -0.53411001, -7.00583405e-05, 0.845414996, 0.000165999998, -1, 2.20056754e-05, 0.845414996, 0.00015209234, 0.53411001)
- Part286.Orientation = Vector3.new(0, 57.7200012, 179.990005)
- Part286.Position = Vector3.new(-1.63360298, 1.120502, 11.6920776)
- Part286.Rotation = Vector3.new(0, 57.7200012, 179.990005)
- Part286.Color = Color3.new(0.627451, 0.372549, 0.207843)
- Part286.Velocity = Vector3.new(0.000615213765, -0.0133667588, 0.00407744292)
- Part286.Size = Vector3.new(1, 1, 1)
- Part286.BackSurface = Enum.SurfaceType.Weld
- Part286.BottomSurface = Enum.SurfaceType.Weld
- Part286.BrickColor = BrickColor.new("Dark orange")
- Part286.CanCollide = false
- Part286.FrontSurface = Enum.SurfaceType.Weld
- Part286.LeftSurface = Enum.SurfaceType.Weld
- Part286.RightSurface = Enum.SurfaceType.Weld
- Part286.RotVelocity = Vector3.new(0.00296970131, -0.00232852763, 0.0026429717)
- Part286.TopSurface = Enum.SurfaceType.Weld
- Part286.brickColor = BrickColor.new("Dark orange")
- Part286.FormFactor = Enum.FormFactor.Symmetric
- Part286.formFactor = Enum.FormFactor.Symmetric
- BlockMesh287.Parent = Part286
- BlockMesh287.Scale = Vector3.new(0.200000003, 0.200000003, 0.200000003)
- Weld288.Parent = Part286
- Weld288.C0 = CFrame.new(38.8999825, -0.899999619, 29.8999748, 0.999999762, 3.52429197e-12, -9.3231499e-08, 3.5242911e-12, 1, 8.31537109e-26, -9.3231499e-08, 1.05991975e-20, 1)
- Weld288.C1 = CFrame.new(-30.6998005, -0.899999499, 40.0999641, 3.44958244e-06, 2.25498567e-16, -1.00000858, 1.34491515e-10, 1, -2.25890717e-16, 0.999999762, 1.34491529e-10, -3.44958107e-06)
- Weld288.Part0 = Part286
- Weld288.Part1 = Part104
- Weld288.part1 = Part104
- Weld289.Parent = Part286
- Weld289.C0 = CFrame.new(-60.3753967, 0.888669252, -27.470911, -0.550069988, 4.31434455e-05, -0.835118592, 1.76352005e-05, -1, -6.32772935e-05, -0.835118651, -4.9534443e-05, 0.550070226)
- Weld289.C1 = CFrame.new(26.6709442, 0.888669252, -59.1754456, 0.835119367, 4.95344866e-05, -0.550070703, 1.76352005e-05, -1, -6.32772935e-05, -0.550069511, 4.31434455e-05, -0.835119069)
- Weld289.Part0 = Part286
- Weld289.Part1 = Part104
- Weld289.part1 = Part104
- Script290.Name = "qPerfectionWeld"
- Script290.Parent = Part19
- table.insert(cors,sandbox(Script290,function()
- -- Created by Quenty (@Quenty, follow me on twitter).
- -- Should work with only ONE copy, seamlessly with weapons, trains, et cetera.
- -- Parts should be ANCHORED before use. It will, however, store relatives values and so when tools are reparented, it'll fix them.
- --[[ INSTRUCTIONS
- - Place in the model
- - Make sure model is anchored
- - That's it. It will weld the model and all children.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- THIS SCRIPT SHOULD BE USED ONLY BY ITSELF. THE MODEL SHOULD BE ANCHORED.
- This script is designed to be used is a regular script. In a local script it will weld, but it will not attempt to handle ancestory changes.
- ]]
- --[[ DOCUMENTATION
- - Will work in tools. If ran more than once it will not create more than one weld. This is especially useful for tools that are dropped and then picked up again.
- - Will work in PBS servers
- - Will work as long as it starts out with the part anchored
- - Stores the relative CFrame as a CFrame value
- - Takes careful measure to reduce lag by not having a joint set off or affected by the parts offset from origin
- - Utilizes a recursive algorith to find all parts in the model
- - Will reweld on script reparent if the script is initially parented to a tool.
- - Welds as fast as possible
- ]]
- -- qPerfectionWeld.lua
- -- Created 10/6/2014
- -- Author: Quenty
- -- Version 1.0.3
- -- Updated 10/14/2014 - Updated to 1.0.1
- --- Bug fix with existing ROBLOX welds ? Repro by asimo3089
- -- Updated 10/14/2014 - Updated to 1.0.2
- --- Fixed bug fix.
- -- Updated 10/14/2014 - Updated to 1.0.3
- --- Now handles joints semi-acceptably. May be rather hacky with some joints. :/
- local NEVER_BREAK_JOINTS = false -- If you set this to true it will never break joints (this can create some welding issues, but can save stuff like hinges).
- local function CallOnChildren(Instance, FunctionToCall)
- -- Calls a function on each of the children of a certain object, using recursion.
- FunctionToCall(Instance)
- for _, Child in next, Instance:GetChildren() do
- CallOnChildren(Child, FunctionToCall)
- end
- end
- local function GetNearestParent(Instance, ClassName)
- -- Returns the nearest parent of a certain class, or returns nil
- local Ancestor = Instance
- repeat
- Ancestor = Ancestor.Parent
- if Ancestor == nil then
- return nil
- end
- until Ancestor:IsA(ClassName)
- return Ancestor
- end
- local function GetBricks(StartInstance)
- local List = {}
- -- if StartInstance:IsA("BasePart") then
- -- List[#List+1] = StartInstance
- -- end
- CallOnChildren(StartInstance, function(Item)
- if Item:IsA("BasePart") then
- List[#List+1] = Item;
- end
- end)
- return List
- end
- local function Modify(Instance, Values)
- -- Modifies an Instance by using a table.
- assert(type(Values) == "table", "Values is not a table");
- for Index, Value in next, Values do
- if type(Index) == "number" then
- Value.Parent = Instance
- else
- Instance[Index] = Value
- end
- end
- return Instance
- end
- local function Make(ClassType, Properties)
- -- Using a syntax hack to create a nice way to Make new items.
- return Modify(Instance.new(ClassType), Properties)
- end
- local Surfaces = {"TopSurface", "BottomSurface", "LeftSurface", "RightSurface", "FrontSurface", "BackSurface"}
- local HingSurfaces = {"Hinge", "Motor", "SteppingMotor"}
- local function HasWheelJoint(Part)
- for _, SurfaceName in pairs(Surfaces) do
- for _, HingSurfaceName in pairs(HingSurfaces) do
- if Part[SurfaceName].Name == HingSurfaceName then
- return true
- end
- end
- end
- return false
- end
- local function ShouldBreakJoints(Part)
- --- We do not want to break joints of wheels/hinges. This takes the utmost care to not do this. There are
- -- definitely some edge cases.
- if NEVER_BREAK_JOINTS then
- return false
- end
- if HasWheelJoint(Part) then
- return false
- end
- local Connected = Part:GetConnectedParts()
- if #Connected == 1 then
- return false
- end
- for _, Item in pairs(Connected) do
- if HasWheelJoint(Item) then
- return false
- elseif not Item:IsDescendantOf(script.Parent) then
- return false
- end
- end
- return true
- end
- local function WeldTogether(Part0, Part1, JointType, WeldParent)
- --- Weld's 2 parts together
- -- @param Part0 The first part
- -- @param Part1 The second part (Dependent part most of the time).
- -- @param [JointType] The type of joint. Defaults to weld.
- -- @param [WeldParent] Parent of the weld, Defaults to Part0 (so GC is better).
- -- @return The weld created.
- JointType = JointType or "Weld"
- local RelativeValue = Part1:FindFirstChild("qRelativeCFrameWeldValue")
- local NewWeld = Part1:FindFirstChild("qCFrameWeldThingy") or Instance.new(JointType)
- Modify(NewWeld, {
- Name = "qCFrameWeldThingy";
- Part0 = Part0;
- Part1 = Part1;
- C0 = CFrame.new();--Part0.CFrame:inverse();
- C1 = RelativeValue and RelativeValue.Value or Part1.CFrame:toObjectSpace(Part0.CFrame); --Part1.CFrame:inverse() * Part0.CFrame;-- Part1.CFrame:inverse();
- Parent = Part1;
- })
- if not RelativeValue then
- RelativeValue = Make("CFrameValue", {
- Parent = Part1;
- Name = "qRelativeCFrameWeldValue";
- Archivable = true;
- Value = NewWeld.C1;
- })
- end
- return NewWeld
- end
- local function WeldParts(Parts, MainPart, JointType, DoNotUnanchor)
- -- @param Parts The Parts to weld. Should be anchored to prevent really horrible results.
- -- @param MainPart The part to weld the model to (can be in the model).
- -- @param [JointType] The type of joint. Defaults to weld.
- -- @parm DoNotUnanchor Boolean, if true, will not unachor the model after cmopletion.
- for _, Part in pairs(Parts) do
- if ShouldBreakJoints(Part) then
- Part:BreakJoints()
- end
- end
- for _, Part in pairs(Parts) do
- if Part ~= MainPart then
- WeldTogether(MainPart, Part, JointType, MainPart)
- end
- end
- if not DoNotUnanchor then
- for _, Part in pairs(Parts) do
- Part.Anchored = false
- end
- MainPart.Anchored = false
- end
- end
- local function PerfectionWeld()
- local Tool = GetNearestParent(script, "Tool")
- local Parts = GetBricks(script.Parent)
- local PrimaryPart = Tool and Tool:FindFirstChild("Handle") and Tool.Handle:IsA("BasePart") and Tool.Handle or script.Parent:IsA("Model") and script.Parent.PrimaryPart or Parts[1]
- if PrimaryPart then
- WeldParts(Parts, PrimaryPart, "Weld", false)
- else
- warn("qWeld - Unable to weld part")
- end
- return Tool
- end
- local Tool = PerfectionWeld()
- if Tool and script.ClassName == "Script" then
- --- Don't bother with local scripts
- script.Parent.AncestryChanged:connect(function()
- PerfectionWeld()
- end)
- end
- -- Created by Quenty (@Quenty, follow me on twitter).
- end))
- for i,v in pairs(mas:GetChildren()) do
- v.Parent = game:GetService("Players").LocalPlayer.Backpack
- pcall(function() v:MakeJoints() end)
- end
- mas:Destroy()
- for i,v in pairs(cors) do
- spawn(function()
- pcall(v)
- end)
- end
- if inputObject.UserInputType == Enum.UserInputType.Keyboard then
- if inputObject.KeyCode == CanToggleMouse.activationkey then
- if CanToggleMouse.allowed and freemouse == false then
- freemouse = true
- else
- freemouse = false
- end
- end
- end
- end)
- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
- runService.RenderStepped:connect(function()
- if running then
- updatechar()
- CamPos = CamPos + (TargetCamPos - CamPos) *0.28
- AngleX = AngleX + (TargetAngleX - AngleX) *0.35
- local dist = TargetAngleY - AngleY
- dist = math.abs(dist) > 180 and dist - (dist / math.abs(dist)) * 360 or dist
- AngleY = (AngleY + dist *0.35) %360
- cam.CameraType = Enum.CameraType.Scriptable
- cam.CoordinateFrame = CFrame.new(head.Position)
- * CFrame.Angles(0,math.rad(AngleY),0)
- * CFrame.Angles(math.rad(AngleX),0,0)
- * CFrame.new(0,0.5,0) -- offset
- humanoidpart.CFrame=CFrame.new(humanoidpart.Position)*CFrame.Angles(0,math.rad(AngleY),0)
- else game:GetService("UserInputService").MouseBehavior = Enum.MouseBehavior.Default
- end
- if (cam.Focus.p-cam.CoordinateFrame.p).magnitude < 1 then
- running = false
- else
- running = true
- if freemouse == true then
- game:GetService("UserInputService").MouseBehavior = Enum.MouseBehavior.Default
- else
- game:GetService("UserInputService").MouseBehavior = Enum.MouseBehavior.LockCenter
- end
- end
- if not CanToggleMouse.allowed then
- freemouse = false
- end
- cam.FieldOfView = FieldOfView
- end)
- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement