SHOW:
|
|
- or go back to the newest paste.
| 1 | -- This script has convert to FE by who i don't know? | |
| 2 | ||
| 3 | ----------------------------------------------------- | |
| 4 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
| |
| 5 | local Player,game,owner = owner,game | |
| 6 | local RealPlayer = Player | |
| 7 | do | |
| 8 | print("FE Compatibility code by Mokiros | Showcase by Bacon Hair!")
| |
| 9 | local rp = RealPlayer | |
| 10 | script.Parent = rp.Character | |
| 11 | ||
| 12 | --RemoteEvent for communicating | |
| 13 | local Event = Instance.new("RemoteEvent")
| |
| 14 | Event.Name = "UserInput_Event" | |
| 15 | ||
| 16 | --Fake event to make stuff like Mouse.KeyDown work | |
| 17 | local function fakeEvent() | |
| 18 | local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
| |
| 19 | t.connect = t.Connect | |
| 20 | return t | |
| 21 | end | |
| 22 | ||
| 23 | --Creating fake input objects with fake variables | |
| 24 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
| |
| 25 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 26 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
| |
| 27 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
| |
| 28 | end} | |
| 29 | --Merged 2 functions into one by checking amount of arguments | |
| 30 | CAS.UnbindAction = CAS.BindAction | |
| 31 | ||
| 32 | --This function will trigger the events that have been :Connect()'ed | |
| 33 | local function te(self,ev,...) | |
| 34 | local t = m[ev] | |
| 35 | if t and t._fakeEvent then | |
| 36 | for _,f in pairs(t.Functions) do | |
| 37 | f(...) | |
| 38 | end | |
| 39 | end | |
| 40 | end | |
| 41 | m.TrigEvent = te | |
| 42 | UIS.TrigEvent = te | |
| 43 | ||
| 44 | Event.OnServerEvent:Connect(function(plr,io) | |
| 45 | if plr~=rp then return end | |
| 46 | m.Target = io.Target | |
| 47 | m.Hit = io.Hit | |
| 48 | if not io.isMouse then | |
| 49 | local b = io.UserInputState == Enum.UserInputState.Begin | |
| 50 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 51 | return m:TrigEvent(b and "Button1Down" or "Button1Up") | |
| 52 | end | |
| 53 | for _,t in pairs(CAS.Actions) do | |
| 54 | for _,k in pairs(t.Keys) do | |
| 55 | if k==io.KeyCode then | |
| 56 | t.Function(t.Name,io.UserInputState,io) | |
| 57 | end | |
| 58 | end | |
| 59 | end | |
| 60 | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
| 61 | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) | |
| 62 | end | |
| 63 | end) | |
| 64 | Event.Parent = NLS([==[ | |
| 65 | local Player = game:GetService("Players").LocalPlayer
| |
| 66 | local Event = script:WaitForChild("UserInput_Event")
| |
| 67 | ||
| 68 | local Mouse = Player:GetMouse() | |
| 69 | local UIS = game:GetService("UserInputService")
| |
| 70 | local input = function(io,a) | |
| 71 | if a then return end | |
| 72 | --Since InputObject is a client-side instance, we create and pass table instead | |
| 73 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
| |
| 74 | end | |
| 75 | UIS.InputBegan:Connect(input) | |
| 76 | UIS.InputEnded:Connect(input) | |
| 77 | ||
| 78 | local h,t | |
| 79 | --Give the server mouse data 30 times every second, but only if the values changed | |
| 80 | --If player is not moving their mouse, client won't fire events | |
| 81 | while wait(1/30) do | |
| 82 | if h~=Mouse.Hit or t~=Mouse.Target then | |
| 83 | h,t=Mouse.Hit,Mouse.Target | |
| 84 | Event:FireServer({isMouse=true,Target=t,Hit=h})
| |
| 85 | end | |
| 86 | end]==],Player.Character) | |
| 87 | ||
| 88 | ----Sandboxed game object that allows the usage of client-side methods and services | |
| 89 | --Real game object | |
| 90 | local _rg = game | |
| 91 | ||
| 92 | --Metatable for fake service | |
| 93 | local fsmt = {
| |
| 94 | __index = function(self,k) | |
| 95 | local s = rawget(self,"_RealService") | |
| 96 | if s then return s[k] end | |
| 97 | end, | |
| 98 | __newindex = function(self,k,v) | |
| 99 | local s = rawget(self,"_RealService") | |
| 100 | if s then s[k]=v end | |
| 101 | end, | |
| 102 | __call = function(self,...) | |
| 103 | local s = rawget(self,"_RealService") | |
| 104 | if s then return s(...) end | |
| 105 | end | |
| 106 | } | |
| 107 | local function FakeService(t,RealService) | |
| 108 | t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService | |
| 109 | return setmetatable(t,fsmt) | |
| 110 | end | |
| 111 | ||
| 112 | --Fake game object | |
| 113 | local g = {
| |
| 114 | GetService = function(self,s) | |
| 115 | return self[s] | |
| 116 | end, | |
| 117 | Players = FakeService({
| |
| 118 | LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
| |
| 119 | },"Players"), | |
| 120 | UserInputService = FakeService(UIS,"UserInputService"), | |
| 121 | ContextActionService = FakeService(CAS,"ContextActionService"), | |
| 122 | } | |
| 123 | rawset(g.Players,"localPlayer",g.Players.LocalPlayer) | |
| 124 | g.service = g.GetService | |
| 125 | ||
| 126 | g.RunService = FakeService({
| |
| 127 | RenderStepped = _rg:GetService("RunService").Heartbeat,
| |
| 128 | BindToRenderStep = function(self,name,_,fun) | |
| 129 | ||
| 130 | end, | |
| 131 | UnbindFromRenderStep = function(self,name) | |
| 132 | self._btrs[name]:Disconnect() | |
| 133 | end, | |
| 134 | },"RunService") | |
| 135 | ||
| 136 | setmetatable(g,{
| |
| 137 | __index=function(self,s) | |
| 138 | return _rg:GetService(s) or typeof(_rg[s])=="function" | |
| 139 | and function(_,...)return _rg[s](_rg,...)end or _rg[s] | |
| 140 | end, | |
| 141 | __newindex = fsmt.__newindex, | |
| 142 | __call = fsmt.__call | |
| 143 | }) | |
| 144 | --Changing owner to fake player object to support owner:GetMouse() | |
| 145 | game,owner = g,g.Players.LocalPlayer | |
| 146 | end | |
| 147 | --CLOWN VAN BY DMS | |
| 148 | --its bad | |
| 149 | --first the victim gets kidnapped in a van | |
| 150 | --then they get r3ped | |
| 151 | --then the get killed | |
| 152 | --then the body is dumped on the street | |
| 153 | Victim = "TheGreenNuker" | |
| 154 | o1 = Instance.new("Model")
| |
| 155 | o2 = Instance.new("Part")
| |
| 156 | o3 = Instance.new("CylinderMesh")
| |
| 157 | o4 = Instance.new("Part")
| |
| 158 | o5 = Instance.new("SpecialMesh")
| |
| 159 | o6 = Instance.new("Part")
| |
| 160 | o7 = Instance.new("SpecialMesh")
| |
| 161 | o8 = Instance.new("Part")
| |
| 162 | o9 = Instance.new("BlockMesh")
| |
| 163 | o10 = Instance.new("Part")
| |
| 164 | o11 = Instance.new("BlockMesh")
| |
| 165 | o12 = Instance.new("Part")
| |
| 166 | o13 = Instance.new("Part")
| |
| 167 | o14 = Instance.new("BlockMesh")
| |
| 168 | o15 = Instance.new("Part")
| |
| 169 | o16 = Instance.new("SpecialMesh")
| |
| 170 | o17 = Instance.new("Part")
| |
| 171 | o18 = Instance.new("SpecialMesh")
| |
| 172 | o19 = Instance.new("Part")
| |
| 173 | o20 = Instance.new("SpecialMesh")
| |
| 174 | o21 = Instance.new("Sound")
| |
| 175 | o22 = Instance.new("Part")
| |
| 176 | o23 = Instance.new("BlockMesh")
| |
| 177 | o24 = Instance.new("Part")
| |
| 178 | o25 = Instance.new("SpecialMesh")
| |
| 179 | o26 = Instance.new("Part")
| |
| 180 | o27 = Instance.new("BlockMesh")
| |
| 181 | o28 = Instance.new("Part")
| |
| 182 | o29 = Instance.new("SpecialMesh")
| |
| 183 | o30 = Instance.new("Part")
| |
| 184 | o31 = Instance.new("BlockMesh")
| |
| 185 | o32 = Instance.new("Part")
| |
| 186 | o33 = Instance.new("BlockMesh")
| |
| 187 | o34 = Instance.new("Part")
| |
| 188 | o35 = Instance.new("BlockMesh")
| |
| 189 | o36 = Instance.new("Part")
| |
| 190 | o37 = Instance.new("BlockMesh")
| |
| 191 | o38 = Instance.new("Part")
| |
| 192 | o39 = Instance.new("Part")
| |
| 193 | o40 = Instance.new("BlockMesh")
| |
| 194 | o41 = Instance.new("Part")
| |
| 195 | o42 = Instance.new("BlockMesh")
| |
| 196 | o43 = Instance.new("Part")
| |
| 197 | o44 = Instance.new("BlockMesh")
| |
| 198 | o45 = Instance.new("Part")
| |
| 199 | o46 = Instance.new("SpecialMesh")
| |
| 200 | o47 = Instance.new("Part")
| |
| 201 | o48 = Instance.new("BlockMesh")
| |
| 202 | o49 = Instance.new("Part")
| |
| 203 | o50 = Instance.new("BlockMesh")
| |
| 204 | o51 = Instance.new("Part")
| |
| 205 | o52 = Instance.new("BlockMesh")
| |
| 206 | o53 = Instance.new("Part")
| |
| 207 | o54 = Instance.new("SpecialMesh")
| |
| 208 | o55 = Instance.new("Part")
| |
| 209 | o56 = Instance.new("SpecialMesh")
| |
| 210 | o57 = Instance.new("Part")
| |
| 211 | o58 = Instance.new("BlockMesh")
| |
| 212 | o59 = Instance.new("Part")
| |
| 213 | o60 = Instance.new("BlockMesh")
| |
| 214 | o61 = Instance.new("Part")
| |
| 215 | o62 = Instance.new("BlockMesh")
| |
| 216 | o63 = Instance.new("Part")
| |
| 217 | o64 = Instance.new("Part")
| |
| 218 | o65 = Instance.new("Part")
| |
| 219 | o66 = Instance.new("BlockMesh")
| |
| 220 | o67 = Instance.new("Part")
| |
| 221 | o68 = Instance.new("BlockMesh")
| |
| 222 | o69 = Instance.new("Part")
| |
| 223 | o70 = Instance.new("BlockMesh")
| |
| 224 | o71 = Instance.new("Part")
| |
| 225 | o72 = Instance.new("BlockMesh")
| |
| 226 | o73 = Instance.new("Part")
| |
| 227 | o74 = Instance.new("SpecialMesh")
| |
| 228 | o75 = Instance.new("Decal")
| |
| 229 | o76 = Instance.new("Part")
| |
| 230 | o77 = Instance.new("Part")
| |
| 231 | o78 = Instance.new("BlockMesh")
| |
| 232 | o79 = Instance.new("Part")
| |
| 233 | o80 = Instance.new("SpecialMesh")
| |
| 234 | o81 = Instance.new("Decal")
| |
| 235 | o82 = Instance.new("Part")
| |
| 236 | o83 = Instance.new("SpecialMesh")
| |
| 237 | o84 = Instance.new("Humanoid")
| |
| 238 | o85 = Instance.new("Part")
| |
| 239 | o86 = Instance.new("Part")
| |
| 240 | o87 = Instance.new("Part")
| |
| 241 | o88 = Instance.new("Decal")
| |
| 242 | o89 = Instance.new("Motor6D")
| |
| 243 | o90 = Instance.new("Motor6D")
| |
| 244 | o91 = Instance.new("Motor6D")
| |
| 245 | o92 = Instance.new("Motor6D")
| |
| 246 | o93 = Instance.new("Motor6D")
| |
| 247 | o94 = Instance.new("Part")
| |
| 248 | o95 = Instance.new("Part")
| |
| 249 | o96 = Instance.new("Part")
| |
| 250 | o97 = Instance.new("Part")
| |
| 251 | o98 = Instance.new("Part")
| |
| 252 | o99 = Instance.new("Decal")
| |
| 253 | o100 = Instance.new("Motor6D")
| |
| 254 | o101 = Instance.new("Motor6D")
| |
| 255 | o102 = Instance.new("Motor6D")
| |
| 256 | o103 = Instance.new("Part")
| |
| 257 | o104 = Instance.new("Part")
| |
| 258 | o105 = Instance.new("Part")
| |
| 259 | o106 = Instance.new("Part")
| |
| 260 | o107 = Instance.new("Part")
| |
| 261 | o108 = Instance.new("CylinderMesh")
| |
| 262 | o109 = Instance.new("Part")
| |
| 263 | o110 = Instance.new("CylinderMesh")
| |
| 264 | o111 = Instance.new("Part")
| |
| 265 | o112 = Instance.new("CylinderMesh")
| |
| 266 | o113 = Instance.new("Part")
| |
| 267 | o114 = Instance.new("CylinderMesh")
| |
| 268 | o115 = Instance.new("Part")
| |
| 269 | o116 = Instance.new("CylinderMesh")
| |
| 270 | o117 = Instance.new("Part")
| |
| 271 | o118 = Instance.new("CylinderMesh")
| |
| 272 | o119 = Instance.new("Part")
| |
| 273 | o120 = Instance.new("CylinderMesh")
| |
| 274 | o121 = Instance.new("Part")
| |
| 275 | o122 = Instance.new("SpecialMesh")
| |
| 276 | o123 = Instance.new("Part")
| |
| 277 | o1.Name = " " | |
| 278 | o1.Parent = workspace | |
| 279 | o2.Parent = o1 | |
| 280 | o2.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877) | |
| 281 | o2.Rotation = Vector3.new(-90, 1.20620803e-006, -180) | |
| 282 | o2.Anchored = true | |
| 283 | o2.FormFactor = Enum.FormFactor.Symmetric | |
| 284 | o2.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) | |
| 285 | o2.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) | |
| 286 | o3.Parent = o2 | |
| 287 | o4.Parent = o1 | |
| 288 | o4.BrickColor = BrickColor.new("Institutional white")
| |
| 289 | o4.Position = Vector3.new(96.3181839, 7.00000668, 9.31151104) | |
| 290 | o4.Rotation = Vector3.new(90, 89.9314728, -90) | |
| 291 | o4.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 292 | o4.Velocity = Vector3.new(-0.000346515269, 0.00201798417, -0.00195027643) | |
| 293 | o4.Anchored = true | |
| 294 | o4.FormFactor = Enum.FormFactor.Plate | |
| 295 | o4.Size = Vector3.new(1, 2.4000001, 2) | |
| 296 | o4.CFrame = CFrame.new(96.3181839, 7.00000668, 9.31151104, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0) | |
| 297 | o4.BackSurface = Enum.SurfaceType.Weld | |
| 298 | o4.BottomSurface = Enum.SurfaceType.Weld | |
| 299 | o4.LeftSurface = Enum.SurfaceType.Weld | |
| 300 | o4.TopSurface = Enum.SurfaceType.Weld | |
| 301 | o4.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 302 | o5.Parent = o4 | |
| 303 | o5.MeshType = Enum.MeshType.Wedge | |
| 304 | o6.Parent = o1 | |
| 305 | o6.Material = Enum.Material.SmoothPlastic | |
| 306 | o6.BrickColor = BrickColor.new("Really black")
| |
| 307 | o6.Transparency = 0.5 | |
| 308 | o6.Position = Vector3.new(96.3181839, 7.00000668, 13.8115101) | |
| 309 | o6.Rotation = Vector3.new(90, 89.9440536, -90) | |
| 310 | o6.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 311 | o6.Velocity = Vector3.new(0.000965324172, 0.00135755131, -0.00195027643) | |
| 312 | o6.Anchored = true | |
| 313 | o6.FormFactor = Enum.FormFactor.Plate | |
| 314 | o6.Size = Vector3.new(8, 2.4000001, 1.99999976) | |
| 315 | o6.CFrame = CFrame.new(96.3181839, 7.00000668, 13.8115101, 0, 3.96315798e-008, 0.999999523, 0, 1, -3.97370599e-008, -1, 0, 0) | |
| 316 | o6.BackSurface = Enum.SurfaceType.Weld | |
| 317 | o6.BottomSurface = Enum.SurfaceType.Weld | |
| 318 | o6.LeftSurface = Enum.SurfaceType.Weld | |
| 319 | o6.RightSurface = Enum.SurfaceType.Weld | |
| 320 | o6.TopSurface = Enum.SurfaceType.Weld | |
| 321 | o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 322 | o7.Parent = o6 | |
| 323 | o7.MeshType = Enum.MeshType.Wedge | |
| 324 | o8.Parent = o1 | |
| 325 | o8.BrickColor = BrickColor.new("Br. yellowish orange")
| |
| 326 | o8.Position = Vector3.new(92.2182083, 4.00000715, 9.61151409) | |
| 327 | o8.Rotation = Vector3.new(-0, 0, -2.26619136e-006) | |
| 328 | o8.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 329 | o8.Velocity = Vector3.new(-0.000475873821, 0.00227026758, -0.00119533995) | |
| 330 | o8.Anchored = true | |
| 331 | o8.FormFactor = Enum.FormFactor.Custom | |
| 332 | o8.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714) | |
| 333 | o8.CFrame = CFrame.new(92.2182083, 4.00000715, 9.61151409, 0.999998808, 3.95524538e-008, 0, -3.98161575e-008, 1, 0, 0, 0, 1) | |
| 334 | o8.BackSurface = Enum.SurfaceType.Weld | |
| 335 | o8.BottomSurface = Enum.SurfaceType.Weld | |
| 336 | o8.FrontSurface = Enum.SurfaceType.Weld | |
| 337 | o8.LeftSurface = Enum.SurfaceType.Weld | |
| 338 | o8.RightSurface = Enum.SurfaceType.Weld | |
| 339 | o8.TopSurface = Enum.SurfaceType.Weld | |
| 340 | o8.Color = Color3.new(0.886275, 0.607843, 0.25098) | |
| 341 | o9.Parent = o8 | |
| 342 | o10.Parent = o1 | |
| 343 | o10.BrickColor = BrickColor.new("Institutional white")
| |
| 344 | o10.Position = Vector3.new(105.317894, 8.40004158, 9.31151295) | |
| 345 | o10.Rotation = Vector3.new(-0, 0, -2.21330401e-006) | |
| 346 | o10.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 347 | o10.Velocity = Vector3.new(-0.000245332019, 0.00136755884, -0.00436839834) | |
| 348 | o10.Anchored = true | |
| 349 | o10.CanCollide = false | |
| 350 | game.Players[Victim].Character.Humanoid.WalkSpeed = 0 | |
| 351 | game.Players[Victim].Character.Humanoid.JumpPower = 0 | |
| 352 | o10.FormFactor = Enum.FormFactor.Plate | |
| 353 | o10.Size = Vector3.new(14, 0.400000006, 1) | |
| 354 | o10.CFrame = CFrame.new(105.317894, 8.40004158, 9.31151295, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1) | |
| 355 | o10.BackSurface = Enum.SurfaceType.Weld | |
| 356 | o10.BottomSurface = Enum.SurfaceType.Weld | |
| 357 | o10.FrontSurface = Enum.SurfaceType.Weld | |
| 358 | o10.LeftSurface = Enum.SurfaceType.Weld | |
| 359 | o10.RightSurface = Enum.SurfaceType.Weld | |
| 360 | o10.TopSurface = Enum.SurfaceType.Weld | |
| 361 | o10.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 362 | o11.Parent = o10 | |
| 363 | o12.Name = "DOOR" | |
| 364 | o12.Parent = o1 | |
| 365 | o12.BrickColor = BrickColor.new("Institutional white")
| |
| 366 | o12.Position = Vector3.new(103.708466, 5.81500626, 9.31151104) | |
| 367 | o12.Rotation = Vector3.new(-0, 0, -4.43210411e-006) | |
| 368 | o12.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 369 | o12.Velocity = Vector3.new(-0.000432157307, 0.00148387556, -0.00427860441) | |
| 370 | o12.Anchored = true | |
| 371 | o12.CanCollide = false | |
| 372 | o12.FormFactor = Enum.FormFactor.Plate | |
| 373 | o12.Size = Vector3.new(5.22000027, 4.82999992, 1) | |
| 374 | o12.CFrame = CFrame.new(103.708466, 5.81500626, 9.31151104, 1, 7.73548052e-008, 0, -7.73548052e-008, 1, 0, 0, 0, 1) | |
| 375 | o12.BottomSurface = Enum.SurfaceType.Weld | |
| 376 | o12.LeftSurface = Enum.SurfaceType.Weld | |
| 377 | o12.RightSurface = Enum.SurfaceType.Weld | |
| 378 | o12.TopSurface = Enum.SurfaceType.Weld | |
| 379 | o12.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 380 | o13.Parent = o1 | |
| 381 | o13.BrickColor = BrickColor.new("White")
| |
| 382 | o13.Position = Vector3.new(109.818169, 5.80000877, 9.31151104) | |
| 383 | o13.Rotation = Vector3.new(-0, 0, -2.25410599e-006) | |
| 384 | o13.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 385 | o13.Velocity = Vector3.new(-0.00043324125, 0.00104231632, -0.006061906) | |
| 386 | o13.Anchored = true | |
| 387 | o13.FormFactor = Enum.FormFactor.Plate | |
| 388 | o13.Size = Vector3.new(7, 4.80000019, 1) | |
| 389 | o13.CFrame = CFrame.new(109.818169, 5.80000877, 9.31151104, 0.999996901, 3.9341451e-008, 0, -4.00270856e-008, 1, 0, 0, 0, 1) | |
| 390 | o13.BackSurface = Enum.SurfaceType.Weld | |
| 391 | o13.BottomSurface = Enum.SurfaceType.Weld | |
| 392 | o13.FrontSurface = Enum.SurfaceType.Weld | |
| 393 | o13.LeftSurface = Enum.SurfaceType.Weld | |
| 394 | o13.RightSurface = Enum.SurfaceType.Weld | |
| 395 | o13.TopSurface = Enum.SurfaceType.Weld | |
| 396 | o13.Color = Color3.new(0.94902, 0.952941, 0.952941) | |
| 397 | o14.Parent = o13 | |
| 398 | o15.Parent = o1 | |
| 399 | o15.BrickColor = BrickColor.new("Institutional white")
| |
| 400 | o15.Position = Vector3.new(97.817894, 8.40000725, 13.8115139) | |
| 401 | o15.Rotation = Vector3.new(90, 89.960434, -90) | |
| 402 | o15.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 403 | o15.Velocity = Vector3.new(0.00106650498, 0.00124916411, -0.00218200427) | |
| 404 | o15.Anchored = true | |
| 405 | o15.CanCollide = false | |
| 406 | o15.FormFactor = Enum.FormFactor.Plate | |
| 407 | o15.Size = Vector3.new(10, 0.400000006, 1) | |
| 408 | o15.CFrame = CFrame.new(97.817894, 8.40000725, 13.8115139, 0, 3.86294303e-008, 0.999999762, 0, 1, -3.86821704e-008, -1, 0, 0) | |
| 409 | o15.BackSurface = Enum.SurfaceType.Weld | |
| 410 | o15.BottomSurface = Enum.SurfaceType.Weld | |
| 411 | o15.TopSurface = Enum.SurfaceType.Weld | |
| 412 | o15.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 413 | o16.Parent = o15 | |
| 414 | o16.MeshType = Enum.MeshType.Wedge | |
| 415 | o17.Parent = o1 | |
| 416 | o17.BrickColor = BrickColor.new("Institutional white")
| |
| 417 | o17.Position = Vector3.new(96.3181839, 7.00000668, 18.3115101) | |
| 418 | o17.Rotation = Vector3.new(90, 89.9314728, -90) | |
| 419 | o17.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 420 | o17.Velocity = Vector3.new(0.00227716356, 0.000697118347, -0.00195027643) | |
| 421 | o17.Anchored = true | |
| 422 | o17.FormFactor = Enum.FormFactor.Plate | |
| 423 | o17.Size = Vector3.new(1, 2.4000001, 2) | |
| 424 | o17.CFrame = CFrame.new(96.3181839, 7.00000668, 18.3115101, 0, 3.96052044e-008, 0.999999285, 0, 1, -3.97634246e-008, -1, 0, 0) | |
| 425 | o17.BackSurface = Enum.SurfaceType.Weld | |
| 426 | o17.BottomSurface = Enum.SurfaceType.Weld | |
| 427 | o17.RightSurface = Enum.SurfaceType.Weld | |
| 428 | o17.TopSurface = Enum.SurfaceType.Weld | |
| 429 | o17.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 430 | o18.Parent = o17 | |
| 431 | o18.MeshType = Enum.MeshType.Wedge | |
| 432 | o19.Parent = o1 | |
| 433 | o19.BrickColor = BrickColor.new("Institutional white")
| |
| 434 | o19.Position = Vector3.new(93.8181839, 5.20000744, 13.8115101) | |
| 435 | o19.Rotation = Vector3.new(90, 89.8573456, -90) | |
| 436 | o19.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 437 | o19.Velocity = Vector3.new(0.000835234998, 0.00153823046, -0.00148565089) | |
| 438 | o19.Anchored = true | |
| 439 | o19.FormFactor = Enum.FormFactor.Plate | |
| 440 | o19.Size = Vector3.new(10, 1.20000005, 3) | |
| 441 | o19.CFrame = CFrame.new(93.8181839, 5.20000744, 13.8115101, 0, 3.77325726e-008, 0.999996901, 0, 1, -3.84182002e-008, -1, 0, 0) | |
| 442 | o19.BackSurface = Enum.SurfaceType.Weld | |
| 443 | o19.BottomSurface = Enum.SurfaceType.Weld | |
| 444 | o19.TopSurface = Enum.SurfaceType.Weld | |
| 445 | o19.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 446 | o20.Parent = o19 | |
| 447 | o20.MeshType = Enum.MeshType.Wedge | |
| 448 | o21.Parent = o19 | |
| 449 | o21.SoundId = "rbxassetid://532147820" | |
| 450 | o21.Looped = true | |
| 451 | o22.Parent = o1 | |
| 452 | o22.BrickColor = BrickColor.new("Institutional white")
| |
| 453 | o22.Position = Vector3.new(96.3182907, 4.60000753, 9.31151104) | |
| 454 | o22.Rotation = Vector3.new(-0, 0, -2.23446773e-006) | |
| 455 | o22.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 456 | o22.Velocity = Vector3.new(-0.000519967522, 0.00201797695, -0.00230253674) | |
| 457 | o22.Anchored = true | |
| 458 | o22.FormFactor = Enum.FormFactor.Plate | |
| 459 | o22.Size = Vector3.new(2, 2.4000001, 1) | |
| 460 | o22.CFrame = CFrame.new(96.3182907, 4.60000753, 9.31151104, 0.999993801, 3.8998575e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1) | |
| 461 | o22.BackSurface = Enum.SurfaceType.Weld | |
| 462 | o22.BottomSurface = Enum.SurfaceType.Weld | |
| 463 | o22.FrontSurface = Enum.SurfaceType.Weld | |
| 464 | o22.LeftSurface = Enum.SurfaceType.Weld | |
| 465 | o22.RightSurface = Enum.SurfaceType.Weld | |
| 466 | o22.TopSurface = Enum.SurfaceType.Weld | |
| 467 | o22.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 468 | o23.Parent = o22 | |
| 469 | o24.Parent = o1 | |
| 470 | o24.BrickColor = BrickColor.new("Institutional white")
| |
| 471 | o24.Position = Vector3.new(113.817245, 6.80000734, 18.3115101) | |
| 472 | o24.Rotation = Vector3.new(-0, -90, 0) | |
| 473 | o24.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 474 | o24.Velocity = Vector3.new(0.00226270943, -0.000567569688, -0.00708095264) | |
| 475 | o24.Anchored = true | |
| 476 | o24.FormFactor = Enum.FormFactor.Plate | |
| 477 | o24.Size = Vector3.new(1, 2.79999995, 1) | |
| 478 | o24.CFrame = CFrame.new(113.817245, 6.80000734, 18.3115101, 0, 5.54578605e-008, -1, 0, 1, 5.54578605e-008, 1, 0, 0) | |
| 479 | o24.BackSurface = Enum.SurfaceType.Weld | |
| 480 | o24.BottomSurface = Enum.SurfaceType.Weld | |
| 481 | o24.TopSurface = Enum.SurfaceType.Weld | |
| 482 | o24.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 483 | o25.Parent = o24 | |
| 484 | o25.MeshType = Enum.MeshType.Wedge | |
| 485 | o26.Parent = o1 | |
| 486 | o26.BrickColor = BrickColor.new("Institutional white")
| |
| 487 | o26.Position = Vector3.new(93.0181885, 2.60000825, 13.8115101) | |
| 488 | o26.Rotation = Vector3.new(-0, 0, -2.27223404e-006) | |
| 489 | o26.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 490 | o26.Velocity = Vector3.new(0.000647328445, 0.00159604801, -0.00163401756) | |
| 491 | o26.Anchored = true | |
| 492 | o26.FormFactor = Enum.FormFactor.Plate | |
| 493 | o26.Size = Vector3.new(1.39999998, 1.60000002, 10) | |
| 494 | o26.CFrame = CFrame.new(93.0181885, 2.60000825, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) | |
| 495 | o26.BackSurface = Enum.SurfaceType.Weld | |
| 496 | o26.BottomSurface = Enum.SurfaceType.Weld | |
| 497 | o26.FrontSurface = Enum.SurfaceType.Weld | |
| 498 | o26.LeftSurface = Enum.SurfaceType.Weld | |
| 499 | o26.RightSurface = Enum.SurfaceType.Weld | |
| 500 | o26.TopSurface = Enum.SurfaceType.Weld | |
| 501 | o26.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 502 | o27.Parent = o26 | |
| 503 | o28.Parent = o1 | |
| 504 | o28.BrickColor = BrickColor.new("Institutional white")
| |
| 505 | o28.Position = Vector3.new(113.818176, 6.80000877, 9.31151104) | |
| 506 | o28.Rotation = Vector3.new(-90, -89.7982635, -90) | |
| 507 | o28.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 508 | o28.Velocity = Vector3.new(-0.000360969483, 0.000753228669, -0.00708122458) | |
| 509 | o28.Anchored = true | |
| 510 | o28.FormFactor = Enum.FormFactor.Plate | |
| 511 | o28.Size = Vector3.new(1, 2.79999995, 1) | |
| 512 | o28.CFrame = CFrame.new(113.818176, 6.80000877, 9.31151104, 0, 3.89985715e-008, -0.999993801, 0, 1, 4.03698408e-008, 1, 0, 0) | |
| 513 | o28.BackSurface = Enum.SurfaceType.Weld | |
| 514 | o28.BottomSurface = Enum.SurfaceType.Weld | |
| 515 | o28.TopSurface = Enum.SurfaceType.Weld | |
| 516 | o28.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 517 | o29.Parent = o28 | |
| 518 | o29.MeshType = Enum.MeshType.Wedge | |
| 519 | o30.Parent = o1 | |
| 520 | o30.BrickColor = BrickColor.new("Institutional white")
| |
| 521 | o30.Position = Vector3.new(96.3181992, 4.60000753, 18.3115101) | |
| 522 | o30.Rotation = Vector3.new(-0, 0, -2.26770203e-006) | |
| 523 | o30.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 524 | o30.Velocity = Vector3.new(0.00210371148, 0.000697117415, -0.0023025109) | |
| 525 | o30.Anchored = true | |
| 526 | o30.FormFactor = Enum.FormFactor.Plate | |
| 527 | o30.Size = Vector3.new(2, 2.4000001, 1) | |
| 528 | o30.CFrame = CFrame.new(96.3181992, 4.60000753, 18.3115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1) | |
| 529 | o30.BackSurface = Enum.SurfaceType.Weld | |
| 530 | o30.BottomSurface = Enum.SurfaceType.Weld | |
| 531 | o30.FrontSurface = Enum.SurfaceType.Weld | |
| 532 | o30.LeftSurface = Enum.SurfaceType.Weld | |
| 533 | o30.RightSurface = Enum.SurfaceType.Weld | |
| 534 | o30.TopSurface = Enum.SurfaceType.Weld | |
| 535 | o30.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 536 | o31.Parent = o30 | |
| 537 | o32.Parent = o1 | |
| 538 | o32.BrickColor = BrickColor.new("Dark stone grey")
| |
| 539 | o32.Position = Vector3.new(95.8181839, 4.60000753, 13.8115101) | |
| 540 | o32.Rotation = Vector3.new(90, 89.960434, -90) | |
| 541 | o32.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 542 | o32.Velocity = Vector3.new(0.000791871978, 0.00139368721, -0.00215674727) | |
| 543 | o32.Anchored = true | |
| 544 | o32.FormFactor = Enum.FormFactor.Plate | |
| 545 | o32.Size = Vector3.new(8, 2.4000001, 1) | |
| 546 | o32.CFrame = CFrame.new(95.8181839, 4.60000753, 13.8115101, 0, 3.96579551e-008, 0.999999762, 0, 1, -3.97106952e-008, -1, 0, 0) | |
| 547 | o32.BottomSurface = Enum.SurfaceType.Weld | |
| 548 | o32.TopSurface = Enum.SurfaceType.Weld | |
| 549 | o32.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 550 | o33.Parent = o32 | |
| 551 | o33.Offset = Vector3.new(0, 0, 0.5) | |
| 552 | o33.Scale = Vector3.new(1, 1, 2) | |
| 553 | o34.Parent = o1 | |
| 554 | o34.BrickColor = BrickColor.new("Institutional white")
| |
| 555 | o34.Position = Vector3.new(93.8181992, 4.00000715, 13.8115101) | |
| 556 | o34.Rotation = Vector3.new(-0, 0, -2.26770203e-006) | |
| 557 | o34.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 558 | o34.Velocity = Vector3.new(0.000748508843, 0.00153822941, -0.00166177051) | |
| 559 | o34.Anchored = true | |
| 560 | o34.FormFactor = Enum.FormFactor.Plate | |
| 561 | o34.Size = Vector3.new(3, 1.20000005, 10) | |
| 562 | o34.CFrame = CFrame.new(93.8181992, 4.00000715, 13.8115101, 0.999999046, 3.95788291e-008, 0, -3.97897928e-008, 1, 0, 0, 0, 1) | |
| 563 | o34.BackSurface = Enum.SurfaceType.Weld | |
| 564 | o34.BottomSurface = Enum.SurfaceType.Weld | |
| 565 | o34.FrontSurface = Enum.SurfaceType.Weld | |
| 566 | o34.LeftSurface = Enum.SurfaceType.Weld | |
| 567 | o34.RightSurface = Enum.SurfaceType.Weld | |
| 568 | o34.TopSurface = Enum.SurfaceType.Weld | |
| 569 | o34.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 570 | o35.Parent = o34 | |
| 571 | o36.Parent = o1 | |
| 572 | o36.BrickColor = BrickColor.new("Br. yellowish orange")
| |
| 573 | o36.Position = Vector3.new(92.2181854, 4.00000715, 18.211504) | |
| 574 | o36.Rotation = Vector3.new(-0, 0, -2.2601489e-006) | |
| 575 | o36.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 576 | o36.Velocity = Vector3.new(0.00203119451, 0.00100810977, -0.00119533355) | |
| 577 | o36.Anchored = true | |
| 578 | o36.FormFactor = Enum.FormFactor.Custom | |
| 579 | o36.Size = Vector3.new(0.200000003, 0.800000012, 0.799999714) | |
| 580 | o36.CFrame = CFrame.new(92.2181854, 4.00000715, 18.211504, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1) | |
| 581 | o36.BackSurface = Enum.SurfaceType.Weld | |
| 582 | o36.BottomSurface = Enum.SurfaceType.Weld | |
| 583 | o36.FrontSurface = Enum.SurfaceType.Weld | |
| 584 | o36.LeftSurface = Enum.SurfaceType.Weld | |
| 585 | o36.RightSurface = Enum.SurfaceType.Weld | |
| 586 | o36.TopSurface = Enum.SurfaceType.Weld | |
| 587 | o36.Color = Color3.new(0.886275, 0.607843, 0.25098) | |
| 588 | o37.Parent = o36 | |
| 589 | o38.Parent = o1 | |
| 590 | o38.BrickColor = BrickColor.new("Institutional white")
| |
| 591 | o38.Position = Vector3.new(99.0602112, 4.60000706, 18.3115101) | |
| 592 | o38.Rotation = Vector3.new(-0, 0, -4.84935117e-006) | |
| 593 | o38.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 594 | o38.Velocity = Vector3.new(0.00210371148, 0.000498947338, -0.0031018618) | |
| 595 | o38.Anchored = true | |
| 596 | o38.CanCollide = false | |
| 597 | o38.FormFactor = Enum.FormFactor.Plate | |
| 598 | o38.Size = Vector3.new(3.48000026, 2.4000001, 1) | |
| 599 | o38.CFrame = CFrame.new(99.0602112, 4.60000706, 18.3115101, 1, 8.46371435e-008, 0, -8.46371435e-008, 1, 0, 0, 0, 1) | |
| 600 | o38.BottomSurface = Enum.SurfaceType.Weld | |
| 601 | o38.LeftSurface = Enum.SurfaceType.Weld | |
| 602 | o38.RightSurface = Enum.SurfaceType.Weld | |
| 603 | o38.TopSurface = Enum.SurfaceType.Weld | |
| 604 | o38.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 605 | o39.Parent = o1 | |
| 606 | o39.BrickColor = BrickColor.new("Really red")
| |
| 607 | o39.Position = Vector3.new(113.818176, 4.80000877, 9.31151104) | |
| 608 | o39.Rotation = Vector3.new(-0, 0, -2.2344675e-006) | |
| 609 | o39.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 610 | o39.Velocity = Vector3.new(-0.000505513046, 0.000753228669, -0.00737475045) | |
| 611 | o39.Anchored = true | |
| 612 | o39.FormFactor = Enum.FormFactor.Plate | |
| 613 | o39.Size = Vector3.new(1, 1.20000005, 1) | |
| 614 | o39.CFrame = CFrame.new(113.818176, 4.80000877, 9.31151104, 0.999993801, 3.89985715e-008, 0, -4.03698408e-008, 1, 0, 0, 0, 1) | |
| 615 | o39.BackSurface = Enum.SurfaceType.Weld | |
| 616 | o39.BottomSurface = Enum.SurfaceType.Weld | |
| 617 | o39.FrontSurface = Enum.SurfaceType.Weld | |
| 618 | o39.LeftSurface = Enum.SurfaceType.Weld | |
| 619 | o39.RightSurface = Enum.SurfaceType.Weld | |
| 620 | o39.TopSurface = Enum.SurfaceType.Weld | |
| 621 | o39.Color = Color3.new(1, 0, 0) | |
| 622 | o40.Parent = o39 | |
| 623 | o41.Parent = o1 | |
| 624 | o41.BrickColor = BrickColor.new("Institutional white")
| |
| 625 | o41.Position = Vector3.new(113.818054, 3.80000734, 9.31151104) | |
| 626 | o41.Rotation = Vector3.new(-0, 0, -2.23295706e-006) | |
| 627 | o41.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 628 | o41.Velocity = Vector3.new(-0.000577784958, 0.000753237749, -0.00752147706) | |
| 629 | o41.Anchored = true | |
| 630 | o41.FormFactor = Enum.FormFactor.Plate | |
| 631 | o41.Size = Vector3.new(1, 0.800000012, 1) | |
| 632 | o41.CFrame = CFrame.new(113.818054, 3.80000734, 9.31151104, 0.999993563, 3.89721997e-008, 0, -4.03962055e-008, 1, 0, 0, 0, 1) | |
| 633 | o41.BackSurface = Enum.SurfaceType.Weld | |
| 634 | o41.BottomSurface = Enum.SurfaceType.Weld | |
| 635 | o41.FrontSurface = Enum.SurfaceType.Weld | |
| 636 | o41.LeftSurface = Enum.SurfaceType.Weld | |
| 637 | o41.RightSurface = Enum.SurfaceType.Weld | |
| 638 | o41.TopSurface = Enum.SurfaceType.Weld | |
| 639 | o41.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 640 | o42.Parent = o41 | |
| 641 | o43.Parent = o1 | |
| 642 | o43.BrickColor = BrickColor.new("Institutional white")
| |
| 643 | o43.Position = Vector3.new(105.317894, 8.40000725, 13.8115139) | |
| 644 | o43.Rotation = Vector3.new(-0, 0, -2.21481446e-006) | |
| 645 | o43.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 646 | o43.Velocity = Vector3.new(0.00106650498, 0.000707125873, -0.00436840346) | |
| 647 | o43.Anchored = true | |
| 648 | o43.CanCollide = false | |
| 649 | o43.FormFactor = Enum.FormFactor.Plate | |
| 650 | o43.Size = Vector3.new(14, 0.400000006, 8) | |
| 651 | o43.CFrame = CFrame.new(105.317894, 8.40000725, 13.8115139, 1, 3.86558057e-008, 0, -3.86558057e-008, 1, 0, 0, 0, 1) | |
| 652 | o43.BackSurface = Enum.SurfaceType.Weld | |
| 653 | o43.BottomSurface = Enum.SurfaceType.Weld | |
| 654 | o43.FrontSurface = Enum.SurfaceType.Weld | |
| 655 | o43.LeftSurface = Enum.SurfaceType.Weld | |
| 656 | o43.RightSurface = Enum.SurfaceType.Weld | |
| 657 | o43.TopSurface = Enum.SurfaceType.Weld | |
| 658 | o43.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 659 | o44.Parent = o43 | |
| 660 | o45.Parent = o1 | |
| 661 | o45.BrickColor = BrickColor.new("Really black")
| |
| 662 | o45.Position = Vector3.new(113.818176, 6.80000782, 11.311511) | |
| 663 | o45.Rotation = Vector3.new(-90, -89.9314728, -90) | |
| 664 | o45.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 665 | o45.Velocity = Vector3.new(0.000222070201, 0.000459702482, -0.00708122645) | |
| 666 | o45.Anchored = true | |
| 667 | o45.CanCollide = false | |
| 668 | o45.FormFactor = Enum.FormFactor.Plate | |
| 669 | o45.Size = Vector3.new(3, 2.79999995, 1) | |
| 670 | o45.CFrame = CFrame.new(113.818176, 6.80000782, 11.311511, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0) | |
| 671 | o45.BackSurface = Enum.SurfaceType.Weld | |
| 672 | o45.BottomSurface = Enum.SurfaceType.Weld | |
| 673 | o45.TopSurface = Enum.SurfaceType.Weld | |
| 674 | o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 675 | o46.Parent = o45 | |
| 676 | o46.MeshType = Enum.MeshType.Wedge | |
| 677 | o47.Parent = o1 | |
| 678 | o47.BrickColor = BrickColor.new("Institutional white")
| |
| 679 | o47.Position = Vector3.new(103.118179, 2.40000772, 13.8115101) | |
| 680 | o47.Rotation = Vector3.new(-0, 0, -2.27223404e-006) | |
| 681 | o47.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 682 | o47.Velocity = Vector3.new(0.000632874086, 0.000866103393, -0.0046077203) | |
| 683 | o47.Anchored = true | |
| 684 | o47.FormFactor = Enum.FormFactor.Plate | |
| 685 | o47.Size = Vector3.new(12.3999996, 1.20000005, 10) | |
| 686 | o47.CFrame = CFrame.new(103.118179, 2.40000772, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) | |
| 687 | o47.BackSurface = Enum.SurfaceType.Weld | |
| 688 | o47.BottomSurface = Enum.SurfaceType.Weld | |
| 689 | o47.FrontSurface = Enum.SurfaceType.Weld | |
| 690 | o47.LeftSurface = Enum.SurfaceType.Weld | |
| 691 | o47.RightSurface = Enum.SurfaceType.Weld | |
| 692 | o47.TopSurface = Enum.SurfaceType.Weld | |
| 693 | o47.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 694 | o48.Parent = o47 | |
| 695 | o49.Parent = o1 | |
| 696 | o49.BrickColor = BrickColor.new("White")
| |
| 697 | o49.Position = Vector3.new(104.018181, 3.20000815, 13.8115101) | |
| 698 | o49.Rotation = Vector3.new(-0, 0, -2.27374471e-006) | |
| 699 | o49.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 700 | o49.Velocity = Vector3.new(0.000690691522, 0.000801058719, -0.00475267787) | |
| 701 | o49.Anchored = true | |
| 702 | o49.FormFactor = Enum.FormFactor.Plate | |
| 703 | o49.Size = Vector3.new(20.6000004, 0.400000006, 10) | |
| 704 | o49.CFrame = CFrame.new(104.018181, 3.20000815, 13.8115101, 1, 3.96843305e-008, 0, -3.96843305e-008, 1, 0, 0, 0, 1) | |
| 705 | o49.BackSurface = Enum.SurfaceType.Weld | |
| 706 | o49.BottomSurface = Enum.SurfaceType.Weld | |
| 707 | o49.FrontSurface = Enum.SurfaceType.Weld | |
| 708 | o49.LeftSurface = Enum.SurfaceType.Weld | |
| 709 | o49.RightSurface = Enum.SurfaceType.Weld | |
| 710 | o49.TopSurface = Enum.SurfaceType.Weld | |
| 711 | o49.Color = Color3.new(0.94902, 0.952941, 0.952941) | |
| 712 | o50.Parent = o49 | |
| 713 | o51.Parent = o1 | |
| 714 | o51.BrickColor = BrickColor.new("Institutional white")
| |
| 715 | o51.Position = Vector3.new(107.167747, 5.80000782, 18.3115101) | |
| 716 | o51.Rotation = Vector3.new(-0, 0, -3.14727777e-006) | |
| 717 | o51.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 718 | o51.Velocity = Vector3.new(0.00219043763, -8.69987416e-005, -0.00528925471) | |
| 719 | o51.Anchored = true | |
| 720 | o51.FormFactor = Enum.FormFactor.Plate | |
| 721 | o51.Size = Vector3.new(12.3000002, 4.80000019, 1) | |
| 722 | o51.CFrame = CFrame.new(107.167747, 5.80000782, 18.3115101, 1, 5.49303607e-008, 0, -5.49303607e-008, 1, 0, 0, 0, 1) | |
| 723 | o51.BackSurface = Enum.SurfaceType.Weld | |
| 724 | o51.BottomSurface = Enum.SurfaceType.Weld | |
| 725 | o51.FrontSurface = Enum.SurfaceType.Weld | |
| 726 | o51.LeftSurface = Enum.SurfaceType.Weld | |
| 727 | o51.RightSurface = Enum.SurfaceType.Weld | |
| 728 | o51.TopSurface = Enum.SurfaceType.Weld | |
| 729 | o51.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 730 | o52.Parent = o51 | |
| 731 | o53.Parent = o1 | |
| 732 | o53.BrickColor = BrickColor.new("Institutional white")
| |
| 733 | o53.Position = Vector3.new(113.818176, 6.80000782, 13.8115101) | |
| 734 | o53.Rotation = Vector3.new(-90, -89.9314728, -90) | |
| 735 | o53.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 736 | o53.Velocity = Vector3.new(0.000950869871, 9.27953006e-005, -0.00708122645) | |
| 737 | o53.Anchored = true | |
| 738 | o53.CanCollide = false | |
| 739 | o53.FormFactor = Enum.FormFactor.Plate | |
| 740 | o53.Size = Vector3.new(2, 2.79999995, 1) | |
| 741 | o53.CFrame = CFrame.new(113.818176, 6.80000782, 13.8115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0) | |
| 742 | o53.BackSurface = Enum.SurfaceType.Weld | |
| 743 | o53.BottomSurface = Enum.SurfaceType.Weld | |
| 744 | o53.TopSurface = Enum.SurfaceType.Weld | |
| 745 | o53.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 746 | o54.Parent = o53 | |
| 747 | o54.MeshType = Enum.MeshType.Wedge | |
| 748 | o55.Parent = o1 | |
| 749 | o55.BrickColor = BrickColor.new("Really black")
| |
| 750 | o55.Position = Vector3.new(113.818176, 6.80000782, 16.3115101) | |
| 751 | o55.Rotation = Vector3.new(-90, -89.9314728, -90) | |
| 752 | o55.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 753 | o55.Velocity = Vector3.new(0.0016796696, -0.000274111895, -0.00708122645) | |
| 754 | o55.Anchored = true | |
| 755 | o55.CanCollide = false | |
| 756 | o55.FormFactor = Enum.FormFactor.Plate | |
| 757 | o55.Size = Vector3.new(3, 2.79999995, 1) | |
| 758 | o55.CFrame = CFrame.new(113.818176, 6.80000782, 16.3115101, 0, 3.96052044e-008, -0.999999285, 0, 1, 3.97634281e-008, 1, 0, 0) | |
| 759 | o55.BackSurface = Enum.SurfaceType.Weld | |
| 760 | o55.BottomSurface = Enum.SurfaceType.Weld | |
| 761 | o55.TopSurface = Enum.SurfaceType.Weld | |
| 762 | o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 763 | o56.Parent = o55 | |
| 764 | o56.MeshType = Enum.MeshType.Wedge | |
| 765 | o57.Parent = o1 | |
| 766 | o57.BrickColor = BrickColor.new("Institutional white")
| |
| 767 | o57.Position = Vector3.new(113.818176, 4.40000582, 13.8115101) | |
| 768 | o57.Rotation = Vector3.new(-0, 0, -2.27223404e-006) | |
| 769 | o57.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 770 | o57.Velocity = Vector3.new(0.000777417503, 9.27956426e-005, -0.00743345637) | |
| 771 | o57.Anchored = true | |
| 772 | o57.CanCollide = false | |
| 773 | o57.FormFactor = Enum.FormFactor.Plate | |
| 774 | o57.Size = Vector3.new(1, 2, 8) | |
| 775 | o57.CFrame = CFrame.new(113.818176, 4.40000582, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) | |
| 776 | o57.BackSurface = Enum.SurfaceType.Weld | |
| 777 | o57.BottomSurface = Enum.SurfaceType.Weld | |
| 778 | o57.FrontSurface = Enum.SurfaceType.Weld | |
| 779 | o57.LeftSurface = Enum.SurfaceType.Weld | |
| 780 | o57.RightSurface = Enum.SurfaceType.Weld | |
| 781 | o57.TopSurface = Enum.SurfaceType.Weld | |
| 782 | o57.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 783 | o58.Parent = o57 | |
| 784 | o59.Parent = o1 | |
| 785 | o59.BrickColor = BrickColor.new("Institutional white")
| |
| 786 | o59.Position = Vector3.new(113.818176, 3.80000734, 18.3115101) | |
| 787 | o59.Rotation = Vector3.new(-0, 0, -2.27223404e-006) | |
| 788 | o59.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 789 | o59.Velocity = Vector3.new(0.00204589404, -0.000567637384, -0.00752151385) | |
| 790 | o59.Anchored = true | |
| 791 | o59.FormFactor = Enum.FormFactor.Plate | |
| 792 | o59.Size = Vector3.new(1, 0.800000012, 1) | |
| 793 | o59.CFrame = CFrame.new(113.818176, 3.80000734, 18.3115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) | |
| 794 | o59.BackSurface = Enum.SurfaceType.Weld | |
| 795 | o59.BottomSurface = Enum.SurfaceType.Weld | |
| 796 | o59.FrontSurface = Enum.SurfaceType.Weld | |
| 797 | o59.LeftSurface = Enum.SurfaceType.Weld | |
| 798 | o59.RightSurface = Enum.SurfaceType.Weld | |
| 799 | o59.TopSurface = Enum.SurfaceType.Weld | |
| 800 | o59.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 801 | o60.Parent = o59 | |
| 802 | o61.Parent = o1 | |
| 803 | o61.BrickColor = BrickColor.new("Institutional white")
| |
| 804 | o61.Position = Vector3.new(105.317894, 8.40000725, 18.3115101) | |
| 805 | o61.Rotation = Vector3.new(-0, 0, -2.21330401e-006) | |
| 806 | o61.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 807 | o61.Velocity = Vector3.new(0.00237834454, 4.6692905e-005, -0.00436840346) | |
| 808 | o61.Anchored = true | |
| 809 | o61.CanCollide = false | |
| 810 | o61.FormFactor = Enum.FormFactor.Plate | |
| 811 | o61.Size = Vector3.new(14, 0.400000006, 1) | |
| 812 | o61.CFrame = CFrame.new(105.317894, 8.40000725, 18.3115101, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1) | |
| 813 | o61.BackSurface = Enum.SurfaceType.Weld | |
| 814 | o61.BottomSurface = Enum.SurfaceType.Weld | |
| 815 | o61.FrontSurface = Enum.SurfaceType.Weld | |
| 816 | o61.LeftSurface = Enum.SurfaceType.Weld | |
| 817 | o61.RightSurface = Enum.SurfaceType.Weld | |
| 818 | o61.TopSurface = Enum.SurfaceType.Weld | |
| 819 | o61.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 820 | o62.Parent = o61 | |
| 821 | o63.Parent = o1 | |
| 822 | o63.BrickColor = BrickColor.new("Institutional white")
| |
| 823 | o63.Position = Vector3.new(97.8181839, 5.79500866, 9.31151104) | |
| 824 | o63.Rotation = Vector3.new(-0, 0, -2.36894834e-006) | |
| 825 | o63.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 826 | o63.Velocity = Vector3.new(-0.000433602603, 0.00190957636, -0.00256440602) | |
| 827 | o63.Anchored = true | |
| 828 | o63.CanCollide = false | |
| 829 | o63.FormFactor = Enum.FormFactor.Plate | |
| 830 | o63.Size = Vector3.new(1, 4.80999994, 1) | |
| 831 | o63.CFrame = CFrame.new(97.8181839, 5.79500866, 9.31151104, 1, 4.13459489e-008, 0, -4.13459489e-008, 1, 0, 0, 0, 1) | |
| 832 | o63.BottomSurface = Enum.SurfaceType.Weld | |
| 833 | o63.LeftSurface = Enum.SurfaceType.Weld | |
| 834 | o63.RightSurface = Enum.SurfaceType.Weld | |
| 835 | o63.TopSurface = Enum.SurfaceType.Weld | |
| 836 | o63.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 837 | o64.Parent = o1 | |
| 838 | o64.BrickColor = BrickColor.new("Institutional white")
| |
| 839 | o64.Position = Vector3.new(97.8178101, 7.00000858, 18.3115101) | |
| 840 | o64.Rotation = Vector3.new(-0, 0, -2.14529973e-006) | |
| 841 | o64.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 842 | o64.Velocity = Vector3.new(0.00227716402, 0.00058873737, -0.00238744705) | |
| 843 | o64.Anchored = true | |
| 844 | o64.CanCollide = false | |
| 845 | o64.FormFactor = Enum.FormFactor.Plate | |
| 846 | o64.Size = Vector3.new(1, 2.4000001, 1) | |
| 847 | o64.CFrame = CFrame.new(97.8178101, 7.00000858, 18.3115101, 0.999999762, 3.74425326e-008, 0, -3.74952727e-008, 1, 0, 0, 0, 1) | |
| 848 | o64.BottomSurface = Enum.SurfaceType.Weld | |
| 849 | o64.LeftSurface = Enum.SurfaceType.Weld | |
| 850 | o64.RightSurface = Enum.SurfaceType.Weld | |
| 851 | o64.TopSurface = Enum.SurfaceType.Weld | |
| 852 | o64.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 853 | o65.Parent = o1 | |
| 854 | o65.BrickColor = BrickColor.new("Institutional white")
| |
| 855 | o65.Position = Vector3.new(113.418167, 2.40000749, 13.8115101) | |
| 856 | o65.Rotation = Vector3.new(-0, 0, -2.27223404e-006) | |
| 857 | o65.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 858 | o65.Velocity = Vector3.new(0.000632874086, 0.000121704477, -0.0076103732) | |
| 859 | o65.Anchored = true | |
| 860 | o65.FormFactor = Enum.FormFactor.Plate | |
| 861 | o65.Size = Vector3.new(1.80000007, 1.20000005, 10) | |
| 862 | o65.CFrame = CFrame.new(113.418167, 2.40000749, 13.8115101, 0.999999762, 3.96579551e-008, 0, -3.97106952e-008, 1, 0, 0, 0, 1) | |
| 863 | o65.BackSurface = Enum.SurfaceType.Weld | |
| 864 | o65.BottomSurface = Enum.SurfaceType.Weld | |
| 865 | o65.FrontSurface = Enum.SurfaceType.Weld | |
| 866 | o65.LeftSurface = Enum.SurfaceType.Weld | |
| 867 | o65.RightSurface = Enum.SurfaceType.Weld | |
| 868 | o65.TopSurface = Enum.SurfaceType.Weld | |
| 869 | o65.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 870 | o66.Parent = o65 | |
| 871 | o67.Parent = o1 | |
| 872 | o67.BrickColor = BrickColor.new("Really red")
| |
| 873 | o67.Position = Vector3.new(113.817245, 4.80000687, 18.3115101) | |
| 874 | o67.Rotation = Vector3.new(-0, 0, -3.17145691e-006) | |
| 875 | o67.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 876 | o67.Velocity = Vector3.new(0.00211816584, -0.000567570096, -0.0073744799) | |
| 877 | o67.Anchored = true | |
| 878 | o67.FormFactor = Enum.FormFactor.Plate | |
| 879 | o67.Size = Vector3.new(1, 1.20000005, 1) | |
| 880 | o67.CFrame = CFrame.new(113.817245, 4.80000687, 18.3115101, 1, 5.53523627e-008, 0, -5.53523627e-008, 1, 0, 0, 0, 1) | |
| 881 | o67.BackSurface = Enum.SurfaceType.Weld | |
| 882 | o67.BottomSurface = Enum.SurfaceType.Weld | |
| 883 | o67.FrontSurface = Enum.SurfaceType.Weld | |
| 884 | o67.LeftSurface = Enum.SurfaceType.Weld | |
| 885 | o67.RightSurface = Enum.SurfaceType.Weld | |
| 886 | o67.TopSurface = Enum.SurfaceType.Weld | |
| 887 | o67.Color = Color3.new(1, 0, 0) | |
| 888 | o68.Parent = o67 | |
| 889 | o69.Parent = o1 | |
| 890 | o69.BrickColor = BrickColor.new("Institutional white")
| |
| 891 | o69.Position = Vector3.new(112.817894, 8.40000725, 13.8115139) | |
| 892 | o69.Rotation = Vector3.new(-0, 0, -2.21330401e-006) | |
| 893 | o69.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 894 | o69.Velocity = Vector3.new(0.00106650498, 0.000165087578, -0.00655480288) | |
| 895 | o69.Anchored = true | |
| 896 | o69.CanCollide = false | |
| 897 | o69.FormFactor = Enum.FormFactor.Plate | |
| 898 | o69.Size = Vector3.new(1, 0.400000006, 10) | |
| 899 | o69.CFrame = CFrame.new(112.817894, 8.40000725, 13.8115139, 0.999999762, 3.86294303e-008, 0, -3.86821704e-008, 1, 0, 0, 0, 1) | |
| 900 | o69.BackSurface = Enum.SurfaceType.Weld | |
| 901 | o69.BottomSurface = Enum.SurfaceType.Weld | |
| 902 | o69.FrontSurface = Enum.SurfaceType.Weld | |
| 903 | o69.LeftSurface = Enum.SurfaceType.Weld | |
| 904 | o69.RightSurface = Enum.SurfaceType.Weld | |
| 905 | o69.TopSurface = Enum.SurfaceType.Weld | |
| 906 | o69.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 907 | o70.Parent = o69 | |
| 908 | o71.Parent = o1 | |
| 909 | o71.BrickColor = BrickColor.new("Really black")
| |
| 910 | o71.Position = Vector3.new(92.2181854, 3.8000083, 13.8115101) | |
| 911 | o71.Rotation = Vector3.new(-0, 0, -2.2601489e-006) | |
| 912 | o71.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 913 | o71.Velocity = Vector3.new(0.0007340546, 0.00165386556, -0.00122468593) | |
| 914 | o71.Anchored = true | |
| 915 | o71.FormFactor = Enum.FormFactor.Custom | |
| 916 | o71.Size = Vector3.new(0.200000003, 0.800000012, 6) | |
| 917 | o71.CFrame = CFrame.new(92.2181854, 3.8000083, 13.8115101, 0.999997854, 3.94469524e-008, 0, -3.99216233e-008, 1, 0, 0, 0, 1) | |
| 918 | o71.BackSurface = Enum.SurfaceType.Weld | |
| 919 | o71.BottomSurface = Enum.SurfaceType.Weld | |
| 920 | o71.FrontSurface = Enum.SurfaceType.Weld | |
| 921 | o71.LeftSurface = Enum.SurfaceType.Weld | |
| 922 | o71.RightSurface = Enum.SurfaceType.Weld | |
| 923 | o71.TopSurface = Enum.SurfaceType.Weld | |
| 924 | o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 925 | o72.Parent = o71 | |
| 926 | o73.Name = "Head" | |
| 927 | o73.Parent = o1 | |
| 928 | o73.Material = Enum.Material.SmoothPlastic | |
| 929 | o73.BrickColor = BrickColor.new("Institutional white")
| |
| 930 | o73.Position = Vector3.new(99.207077, 7.026577, 15.2047167) | |
| 931 | o73.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 932 | o73.Anchored = true | |
| 933 | o73.FormFactor = Enum.FormFactor.Symmetric | |
| 934 | o73.Size = Vector3.new(2, 1, 1) | |
| 935 | o73.CFrame = CFrame.new(99.207077, 7.026577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 936 | o73.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 937 | o73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 938 | o73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 939 | o73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 940 | o73.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 941 | o73.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 942 | o73.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 943 | o74.Parent = o73 | |
| 944 | o74.Scale = Vector3.new(1.25, 1.25, 1.25) | |
| 945 | o75.Name = "face" | |
| 946 | o75.Parent = o73 | |
| 947 | o75.Texture = "rbxasset://textures/face.png" | |
| 948 | o76.Parent = o1 | |
| 949 | o76.BrickColor = BrickColor.new("Institutional white")
| |
| 950 | o76.Position = Vector3.new(99.6954269, 5.81500673, 9.31151104) | |
| 951 | o76.Rotation = Vector3.new(-0, 0, -8.82515178e-006) | |
| 952 | o76.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 953 | o76.Velocity = Vector3.new(-0.000432157307, 0.00177390513, -0.00310872309) | |
| 954 | o76.Anchored = true | |
| 955 | o76.CanCollide = false | |
| 956 | o76.FormFactor = Enum.FormFactor.Plate | |
| 957 | o76.Size = Vector3.new(2.76000023, 4.82999992, 1) | |
| 958 | o76.CFrame = CFrame.new(99.6954269, 5.81500673, 9.31151104, 1, 1.54027958e-007, 0, -1.54027958e-007, 1, 0, 0, 0, 1) | |
| 959 | o76.BottomSurface = Enum.SurfaceType.Weld | |
| 960 | o76.LeftSurface = Enum.SurfaceType.Weld | |
| 961 | o76.RightSurface = Enum.SurfaceType.Weld | |
| 962 | o76.TopSurface = Enum.SurfaceType.Weld | |
| 963 | o76.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 964 | o77.Parent = o1 | |
| 965 | o77.BrickColor = BrickColor.new("Institutional white")
| |
| 966 | o77.Position = Vector3.new(100.909996, 5.80000877, 14.2915134) | |
| 967 | o77.Rotation = Vector3.new(-0, 0, -7.89941078e-006) | |
| 968 | o77.RotVelocity = Vector3.new(0.000146762875, 0.000291519886, -7.22717741e-005) | |
| 969 | o77.Velocity = Vector3.new(0.0010185279, 0.000955246738, -0.00346499542) | |
| 970 | o77.Anchored = true | |
| 971 | o77.FormFactor = Enum.FormFactor.Plate | |
| 972 | o77.Size = Vector3.new(0.200000003, 4.80000019, 9.0199995) | |
| 973 | o77.CFrame = CFrame.new(100.909996, 5.80000877, 14.2915134, 1, 1.37870728e-007, 0, -1.37870728e-007, 1, 0, 0, 0, 1) | |
| 974 | o77.BackSurface = Enum.SurfaceType.Weld | |
| 975 | o77.BottomSurface = Enum.SurfaceType.Weld | |
| 976 | o77.FrontSurface = Enum.SurfaceType.Weld | |
| 977 | o77.LeftSurface = Enum.SurfaceType.Weld | |
| 978 | o77.RightSurface = Enum.SurfaceType.Weld | |
| 979 | o77.TopSurface = Enum.SurfaceType.Weld | |
| 980 | o77.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 981 | o78.Parent = o77 | |
| 982 | o79.Name = "Head" | |
| 983 | o79.Parent = o1 | |
| 984 | o79.Material = Enum.Material.SmoothPlastic | |
| 985 | o79.BrickColor = BrickColor.new("Institutional white")
| |
| 986 | o79.Position = Vector3.new(103.10894, 7.49666739, 15.2047167) | |
| 987 | o79.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) | |
| 988 | o79.Anchored = true | |
| 989 | o79.FormFactor = Enum.FormFactor.Symmetric | |
| 990 | o79.Size = Vector3.new(2, 1, 1) | |
| 991 | o79.CFrame = CFrame.new(103.10894, 7.49666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) | |
| 992 | o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 993 | o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 994 | o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 995 | o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 996 | o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 997 | o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 998 | o79.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 999 | o80.Parent = o79 | |
| 1000 | o80.Scale = Vector3.new(1.25, 1.25, 1.25) | |
| 1001 | o81.Name = "face" | |
| 1002 | o81.Parent = o79 | |
| 1003 | o81.Texture = "rbxasset://textures/face.png" | |
| 1004 | o82.Name = "Handle" | |
| 1005 | o82.Parent = o1 | |
| 1006 | o82.Material = Enum.Material.SmoothPlastic | |
| 1007 | o82.Position = Vector3.new(103.10894, 7.34666729, 15.2047167) | |
| 1008 | o82.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) | |
| 1009 | o82.Anchored = true | |
| 1010 | o82.CanCollide = false | |
| 1011 | o82.FormFactor = Enum.FormFactor.Symmetric | |
| 1012 | o82.Size = Vector3.new(2, 2, 2) | |
| 1013 | o82.CFrame = CFrame.new(103.10894, 7.34666729, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) | |
| 1014 | o82.BottomSurface = Enum.SurfaceType.Smooth | |
| 1015 | o82.TopSurface = Enum.SurfaceType.Smooth | |
| 1016 | o83.Parent = o82 | |
| 1017 | o83.MeshId = "http://www.roblox.com/asset/?id=15393031" | |
| 1018 | o83.TextureId = "http://www.roblox.com/asset/?id=15393013" | |
| 1019 | o83.MeshType = Enum.MeshType.FileMesh | |
| 1020 | o84.Parent = o1 | |
| 1021 | o84.NameOcclusion = Enum.NameOcclusion.NoOcclusion | |
| 1022 | o84.RightLeg = o94 | |
| 1023 | o84.LeftLeg = o96 | |
| 1024 | o84.Torso = o87 | |
| 1025 | o84.Health = 0 | |
| 1026 | o84.MaxHealth = 0 | |
| 1027 | o85.Name = "TPPART" | |
| 1028 | o85.Parent = o1 | |
| 1029 | o85.Transparency = 1 | |
| 1030 | o85.Position = Vector3.new(104.155182, 4.24109221, 12.6003485) | |
| 1031 | o85.Rotation = Vector3.new(-0, 0, -3.5910773e-006) | |
| 1032 | o85.Anchored = true | |
| 1033 | o85.CanCollide = false | |
| 1034 | o85.Size = Vector3.new(4, 1, 2) | |
| 1035 | o85.CFrame = CFrame.new(104.155182, 4.24109221, 12.6003485, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1) | |
| 1036 | o86.Name = "TPPART2" | |
| 1037 | o86.Parent = o1 | |
| 1038 | o86.Transparency = 1 | |
| 1039 | o86.Position = Vector3.new(104.155182, 5.40188599, 6.32408237) | |
| 1040 | o86.Rotation = Vector3.new(-0, 0, -3.5910773e-006) | |
| 1041 | o86.Anchored = true | |
| 1042 | o86.CanCollide = false | |
| 1043 | o86.Size = Vector3.new(4, 1, 2) | |
| 1044 | o86.CFrame = CFrame.new(104.155182, 5.40188599, 6.32408237, 1, 6.26761221e-008, 0, -6.26761221e-008, 1, 0, 0, 0, 1) | |
| 1045 | o87.Name = "Torso" | |
| 1046 | o87.Parent = o1 | |
| 1047 | o87.Material = Enum.Material.SmoothPlastic | |
| 1048 | o87.BrickColor = BrickColor.new("Navy blue")
| |
| 1049 | o87.Position = Vector3.new(99.207077, 5.526577, 15.2047167) | |
| 1050 | o87.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 1051 | o87.Anchored = true | |
| 1052 | o87.FormFactor = Enum.FormFactor.Symmetric | |
| 1053 | o87.Size = Vector3.new(2, 2, 1) | |
| 1054 | o87.CFrame = CFrame.new(99.207077, 5.526577, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 1055 | o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1056 | o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1057 | o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1058 | o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1059 | o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1060 | o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1061 | o87.Color = Color3.new(0, 0.12549, 0.376471) | |
| 1062 | o88.Name = "roblox" | |
| 1063 | o88.Parent = o87 | |
| 1064 | o89.Name = "Right Shoulder" | |
| 1065 | o89.Parent = o87 | |
| 1066 | o89.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 1067 | o89.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 1068 | o89.Part0 = o87 | |
| 1069 | o89.Part1 = o95 | |
| 1070 | o89.DesiredAngle = -0.062025275081396 | |
| 1071 | o89.MaxVelocity = 0.15000000596046 | |
| 1072 | o90.Name = "Left Shoulder" | |
| 1073 | o90.Parent = o87 | |
| 1074 | o90.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 1075 | o90.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 1076 | o90.Part0 = o87 | |
| 1077 | o90.Part1 = o97 | |
| 1078 | o90.DesiredAngle = -0.062025275081396 | |
| 1079 | o90.MaxVelocity = 0.15000000596046 | |
| 1080 | o91.Name = "Right Hip" | |
| 1081 | o91.Parent = o87 | |
| 1082 | o91.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 1083 | o91.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 1084 | o91.Part0 = o87 | |
| 1085 | o91.Part1 = o94 | |
| 1086 | o91.DesiredAngle = 0.062025275081396 | |
| 1087 | o91.MaxVelocity = 0.10000000149012 | |
| 1088 | o92.Name = "Left Hip" | |
| 1089 | o92.Parent = o87 | |
| 1090 | o92.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 1091 | o92.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 1092 | o92.Part0 = o87 | |
| 1093 | o92.Part1 = o96 | |
| 1094 | o92.DesiredAngle = 0.062025275081396 | |
| 1095 | o92.MaxVelocity = 0.10000000149012 | |
| 1096 | o93.Name = "Neck" | |
| 1097 | o93.Parent = o87 | |
| 1098 | o93.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 1099 | o93.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 1100 | o93.Part0 = o87 | |
| 1101 | o93.Part1 = o73 | |
| 1102 | o93.MaxVelocity = 0.10000000149012 | |
| 1103 | o94.Name = "Right Leg" | |
| 1104 | o94.Parent = o1 | |
| 1105 | o94.Material = Enum.Material.SmoothPlastic | |
| 1106 | o94.BrickColor = BrickColor.new("Navy blue")
| |
| 1107 | o94.Position = Vector3.new(99.215416, 3.526577, 14.7047863) | |
| 1108 | o94.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 1109 | o94.Anchored = true | |
| 1110 | o94.CanCollide = false | |
| 1111 | o94.FormFactor = Enum.FormFactor.Symmetric | |
| 1112 | o94.Size = Vector3.new(1, 2, 1) | |
| 1113 | o94.CFrame = CFrame.new(99.215416, 3.526577, 14.7047863, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 1114 | o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1115 | o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1116 | o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1117 | o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1118 | o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1119 | o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1120 | o94.Color = Color3.new(0, 0.12549, 0.376471) | |
| 1121 | o95.Name = "Right Arm" | |
| 1122 | o95.Parent = o1 | |
| 1123 | o95.Material = Enum.Material.SmoothPlastic | |
| 1124 | o95.BrickColor = BrickColor.new("Maroon")
| |
| 1125 | o95.Position = Vector3.new(99.2321014, 5.526577, 13.7049236) | |
| 1126 | o95.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 1127 | o95.Anchored = true | |
| 1128 | o95.CanCollide = false | |
| 1129 | o95.FormFactor = Enum.FormFactor.Symmetric | |
| 1130 | o95.Size = Vector3.new(1, 2, 1) | |
| 1131 | o95.CFrame = CFrame.new(99.2321014, 5.526577, 13.7049236, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 1132 | o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1133 | o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1134 | o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1135 | o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1136 | o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1137 | o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1138 | o95.Color = Color3.new(0.458824, 0, 0) | |
| 1139 | o96.Name = "Left Leg" | |
| 1140 | o96.Parent = o1 | |
| 1141 | o96.Material = Enum.Material.SmoothPlastic | |
| 1142 | o96.BrickColor = BrickColor.new("Navy blue")
| |
| 1143 | o96.Position = Vector3.new(99.1987381, 3.526577, 15.7046452) | |
| 1144 | o96.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 1145 | o96.Anchored = true | |
| 1146 | o96.CanCollide = false | |
| 1147 | o96.FormFactor = Enum.FormFactor.Symmetric | |
| 1148 | o96.Size = Vector3.new(1, 2, 1) | |
| 1149 | o96.CFrame = CFrame.new(99.1987381, 3.526577, 15.7046452, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 1150 | o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1151 | o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1152 | o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1153 | o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1154 | o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1155 | o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1156 | o96.Color = Color3.new(0, 0.12549, 0.376471) | |
| 1157 | o97.Name = "Left Arm" | |
| 1158 | o97.Parent = o1 | |
| 1159 | o97.Material = Enum.Material.SmoothPlastic | |
| 1160 | o97.BrickColor = BrickColor.new("Maroon")
| |
| 1161 | o97.Position = Vector3.new(99.1820602, 5.526577, 16.7045078) | |
| 1162 | o97.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 1163 | o97.Anchored = true | |
| 1164 | o97.CanCollide = false | |
| 1165 | o97.FormFactor = Enum.FormFactor.Symmetric | |
| 1166 | o97.Size = Vector3.new(1, 2, 1) | |
| 1167 | o97.CFrame = CFrame.new(99.1820602, 5.526577, 16.7045078, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 1168 | o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1169 | o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1170 | o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1171 | o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1172 | o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1173 | o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1174 | o97.Color = Color3.new(0.458824, 0, 0) | |
| 1175 | o98.Name = "Torso" | |
| 1176 | o98.Parent = o1 | |
| 1177 | o98.Material = Enum.Material.SmoothPlastic | |
| 1178 | o98.BrickColor = BrickColor.new("Navy blue")
| |
| 1179 | o98.Position = Vector3.new(103.10894, 5.99666739, 15.2047167) | |
| 1180 | o98.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) | |
| 1181 | o98.Anchored = true | |
| 1182 | o98.FormFactor = Enum.FormFactor.Symmetric | |
| 1183 | o98.Size = Vector3.new(2, 2, 1) | |
| 1184 | o98.CFrame = CFrame.new(103.10894, 5.99666739, 15.2047167, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) | |
| 1185 | o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1186 | o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1187 | o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1188 | o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1189 | o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1190 | o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1191 | o98.Color = Color3.new(0, 0.12549, 0.376471) | |
| 1192 | o99.Name = "roblox" | |
| 1193 | o99.Parent = o98 | |
| 1194 | o100.Name = "Right Hip" | |
| 1195 | o100.Parent = o98 | |
| 1196 | o100.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 1197 | o100.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 1198 | o100.Part0 = o98 | |
| 1199 | o100.Part1 = o103 | |
| 1200 | o100.DesiredAngle = 0.062025275081396 | |
| 1201 | o100.MaxVelocity = 0.10000000149012 | |
| 1202 | o101.Name = "Left Hip" | |
| 1203 | o101.Parent = o98 | |
| 1204 | o101.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 1205 | o101.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 1206 | o101.Part0 = o98 | |
| 1207 | o101.Part1 = o105 | |
| 1208 | o101.DesiredAngle = 0.062025275081396 | |
| 1209 | o101.MaxVelocity = 0.10000000149012 | |
| 1210 | o102.Name = "Neck" | |
| 1211 | o102.Parent = o98 | |
| 1212 | o102.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 1213 | o102.C1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 1214 | o102.Part0 = o98 | |
| 1215 | o102.Part1 = o79 | |
| 1216 | o102.MaxVelocity = 0.10000000149012 | |
| 1217 | o103.Name = "Right Leg" | |
| 1218 | o103.Parent = o1 | |
| 1219 | o103.Material = Enum.Material.SmoothPlastic | |
| 1220 | o103.BrickColor = BrickColor.new("Really black")
| |
| 1221 | o103.Position = Vector3.new(103.608864, 3.99666739, 15.2130556) | |
| 1222 | o103.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) | |
| 1223 | o103.Anchored = true | |
| 1224 | o103.CanCollide = false | |
| 1225 | o103.FormFactor = Enum.FormFactor.Symmetric | |
| 1226 | o103.Size = Vector3.new(1, 2, 1) | |
| 1227 | o103.CFrame = CFrame.new(103.608864, 3.99666739, 15.2130556, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) | |
| 1228 | o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1229 | o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1230 | o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1231 | o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1232 | o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1233 | o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1234 | o103.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1235 | o104.Name = "Right Arm" | |
| 1236 | o104.Parent = o1 | |
| 1237 | o104.Material = Enum.Material.SmoothPlastic | |
| 1238 | o104.BrickColor = BrickColor.new("Maroon")
| |
| 1239 | o104.Position = Vector3.new(104.615349, 5.89646101, 14.8330393) | |
| 1240 | o104.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313) | |
| 1241 | o104.Anchored = true | |
| 1242 | o104.CanCollide = false | |
| 1243 | o104.FormFactor = Enum.FormFactor.Symmetric | |
| 1244 | o104.Size = Vector3.new(1, 2, 1) | |
| 1245 | o104.CFrame = CFrame.new(104.615349, 5.89646101, 14.8330393, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719) | |
| 1246 | o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1247 | o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1248 | o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1249 | o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1250 | o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1251 | o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1252 | o104.Color = Color3.new(0.458824, 0, 0) | |
| 1253 | o105.Name = "Left Leg" | |
| 1254 | o105.Parent = o1 | |
| 1255 | o105.Material = Enum.Material.SmoothPlastic | |
| 1256 | o105.BrickColor = BrickColor.new("Really black")
| |
| 1257 | o105.Position = Vector3.new(102.609009, 3.99666739, 15.1963739) | |
| 1258 | o105.Rotation = Vector3.new(-1.53054156e-008, -0.95580709, -1.83469444e-006) | |
| 1259 | o105.Anchored = true | |
| 1260 | o105.CanCollide = false | |
| 1261 | o105.FormFactor = Enum.FormFactor.Symmetric | |
| 1262 | o105.Size = Vector3.new(1, 2, 1) | |
| 1263 | o105.CFrame = CFrame.new(102.609009, 3.99666739, 15.1963739, 0.999860883, 3.20170024e-008, -0.0166812073, -3.20170024e-008, 1, 2.67092765e-010, 0.0166812055, 2.67026595e-010, 0.999860942) | |
| 1264 | o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1265 | o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1266 | o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1267 | o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1268 | o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1269 | o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1270 | o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1271 | o106.Name = "Left Arm" | |
| 1272 | o106.Parent = o1 | |
| 1273 | o106.Material = Enum.Material.SmoothPlastic | |
| 1274 | o106.BrickColor = BrickColor.new("Maroon")
| |
| 1275 | o106.Position = Vector3.new(101.617271, 5.96075201, 14.6924496) | |
| 1276 | o106.Rotation = Vector3.new(45.0039597, -0.675833881, 0.675880313) | |
| 1277 | o106.Anchored = true | |
| 1278 | o106.CanCollide = false | |
| 1279 | o106.FormFactor = Enum.FormFactor.Symmetric | |
| 1280 | o106.Size = Vector3.new(1, 2, 1) | |
| 1281 | o106.CFrame = CFrame.new(101.617271, 5.96075201, 14.6924496, 0.999860883, -0.0117952423, -0.0117952526, 0, 0.707107067, -0.707106411, 0.0166809987, 0.707008064, 0.707008719) | |
| 1282 | o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1283 | o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1284 | o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1285 | o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1286 | o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1287 | o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1288 | o106.Color = Color3.new(0.458824, 0, 0) | |
| 1289 | o107.Parent = o1 | |
| 1290 | o107.Position = Vector3.new(110.917458, 1.50000954, 18.4564953) | |
| 1291 | o107.Rotation = Vector3.new(-90, 1.20620803e-006, -180) | |
| 1292 | o107.Anchored = true | |
| 1293 | o107.FormFactor = Enum.FormFactor.Symmetric | |
| 1294 | o107.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) | |
| 1295 | o107.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) | |
| 1296 | o108.Parent = o107 | |
| 1297 | o109.Parent = o1 | |
| 1298 | o109.BrickColor = BrickColor.new("Really black")
| |
| 1299 | o109.Position = Vector3.new(110.917442, 1.50002527, 9.1665411) | |
| 1300 | o109.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) | |
| 1301 | o109.Anchored = true | |
| 1302 | o109.FormFactor = Enum.FormFactor.Symmetric | |
| 1303 | o109.Size = Vector3.new(3, 1.20000005, 3) | |
| 1304 | o109.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) | |
| 1305 | o109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1306 | o110.Parent = o109 | |
| 1307 | o111.Parent = o1 | |
| 1308 | o111.BrickColor = BrickColor.new("Really black")
| |
| 1309 | o111.Position = Vector3.new(110.917458, 1.50000954, 18.4564953) | |
| 1310 | o111.Rotation = Vector3.new(-90, 1.20620803e-006, -180) | |
| 1311 | o111.Anchored = true | |
| 1312 | o111.FormFactor = Enum.FormFactor.Symmetric | |
| 1313 | o111.Size = Vector3.new(3, 1.20000005, 3) | |
| 1314 | o111.CFrame = CFrame.new(110.917458, 1.50000954, 18.4564953, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) | |
| 1315 | o111.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1316 | o112.Parent = o111 | |
| 1317 | o113.Parent = o1 | |
| 1318 | o113.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411) | |
| 1319 | o113.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) | |
| 1320 | o113.Anchored = true | |
| 1321 | o113.FormFactor = Enum.FormFactor.Symmetric | |
| 1322 | o113.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) | |
| 1323 | o113.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) | |
| 1324 | o114.Parent = o113 | |
| 1325 | o115.Parent = o1 | |
| 1326 | o115.BrickColor = BrickColor.new("Really black")
| |
| 1327 | o115.Position = Vector3.new(95.3486252, 1.50002623, 9.1665411) | |
| 1328 | o115.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) | |
| 1329 | o115.Anchored = true | |
| 1330 | o115.FormFactor = Enum.FormFactor.Symmetric | |
| 1331 | o115.Size = Vector3.new(3, 1.20000005, 3) | |
| 1332 | o115.CFrame = CFrame.new(95.3486252, 1.50002623, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) | |
| 1333 | o115.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1334 | o116.Parent = o115 | |
| 1335 | o117.Parent = o1 | |
| 1336 | o117.BrickColor = BrickColor.new("Really black")
| |
| 1337 | o117.Position = Vector3.new(95.3486252, 1.50001001, 18.4564877) | |
| 1338 | o117.Rotation = Vector3.new(-90, 1.20620803e-006, -180) | |
| 1339 | o117.Anchored = true | |
| 1340 | o117.FormFactor = Enum.FormFactor.Symmetric | |
| 1341 | o117.Size = Vector3.new(3, 1.20000005, 3) | |
| 1342 | o117.CFrame = CFrame.new(95.3486252, 1.50001001, 18.4564877, -1, 2.98044895e-008, 2.10523012e-008, 2.10523012e-008, 7.54615499e-008, 1, 2.9804486e-008, 1, -7.54615499e-008) | |
| 1343 | o117.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1344 | o118.Parent = o117 | |
| 1345 | o119.Parent = o1 | |
| 1346 | o119.Position = Vector3.new(110.917442, 1.50002527, 9.1665411) | |
| 1347 | o119.Rotation = Vector3.new(-90, 6.45824184e-006, 2.56150702e-006) | |
| 1348 | o119.Anchored = true | |
| 1349 | o119.FormFactor = Enum.FormFactor.Symmetric | |
| 1350 | o119.Size = Vector3.new(2.39999986, 1.31000006, 2.39999986) | |
| 1351 | o119.CFrame = CFrame.new(110.917442, 1.50002527, 9.1665411, 1, -4.47067308e-008, 1.12717586e-007, -1.12717586e-007, -5.51334445e-009, 1, -4.47067308e-008, -1, -5.51334933e-009) | |
| 1352 | o120.Parent = o119 | |
| 1353 | o121.Name = "Handle" | |
| 1354 | o121.Parent = o1 | |
| 1355 | o121.Material = Enum.Material.SmoothPlastic | |
| 1356 | o121.Position = Vector3.new(99.207077, 6.8765769, 15.2047167) | |
| 1357 | o121.Rotation = Vector3.new(5.49961514e-005, 89.0444794, -5.50190998e-005) | |
| 1358 | o121.Anchored = true | |
| 1359 | o121.CanCollide = false | |
| 1360 | o121.FormFactor = Enum.FormFactor.Symmetric | |
| 1361 | o121.Size = Vector3.new(2, 2, 2) | |
| 1362 | o121.CFrame = CFrame.new(99.207077, 6.8765769, 15.2047167, 0.0166787934, 1.60160507e-008, 0.999860942, -5.34079281e-010, 1, -1.60093698e-008, -0.999861002, -2.66988043e-010, 0.0166787915) | |
| 1363 | o121.BottomSurface = Enum.SurfaceType.Smooth | |
| 1364 | o121.TopSurface = Enum.SurfaceType.Smooth | |
| 1365 | o122.Parent = o121 | |
| 1366 | o122.MeshId = "http://www.roblox.com/asset/?id=15393031" | |
| 1367 | o122.TextureId = "http://www.roblox.com/asset/?id=15393013" | |
| 1368 | o122.MeshType = Enum.MeshType.FileMesh | |
| 1369 | o123.Name = "RPPART" | |
| 1370 | o123.Parent = o1 | |
| 1371 | o123.Transparency = 1 | |
| 1372 | o123.Position = Vector3.new(103.454132, 5.33460093, 13.0707426) | |
| 1373 | o123.Rotation = Vector3.new(-90, 0, -0) | |
| 1374 | o123.Anchored = true | |
| 1375 | o123.CanCollide = false | |
| 1376 | o123.Size = Vector3.new(4, 1, 2) | |
| 1377 | o123.CFrame = CFrame.new(103.454132, 5.33460093, 13.0707426, 1, 0, 0, 0, 0, 1, 0, -1, 0) | |
| 1378 | function MoveY(model, Position) | |
| 1379 | for _,part in pairs (model:GetChildren()) do | |
| 1380 | if part.ClassName == "Part" then | |
| 1381 | part.CFrame = part.CFrame + Vector3.new(0,Position,0) | |
| 1382 | end | |
| 1383 | end | |
| 1384 | end | |
| 1385 | function MoveX(model, Position) | |
| 1386 | for _,part in pairs (model:GetChildren()) do | |
| 1387 | if part.ClassName == "Part" then | |
| 1388 | part.CFrame = part.CFrame + Vector3.new(Position,0,0) | |
| 1389 | end | |
| 1390 | end | |
| 1391 | end | |
| 1392 | function MoveSpawn(model, PLAYERPOS) | |
| 1393 | for _,part in pairs (model:GetChildren()) do | |
| 1394 | if part.ClassName == "Part" then | |
| 1395 | part.CFrame = part.CFrame + PLAYERPOS + Vector3.new(50,-2.7,-5) | |
| 1396 | end | |
| 1397 | end | |
| 1398 | end | |
| 1399 | function MoveZ(model, Position) | |
| 1400 | for _,part in pairs (model:GetChildren()) do | |
| 1401 | if part.ClassName == "Part" then | |
| 1402 | part.CFrame = part.CFrame + Vector3.new(0,0,Position) | |
| 1403 | end | |
| 1404 | end | |
| 1405 | end | |
| 1406 | function MoveZPart(Part, Position) | |
| 1407 | Part.CFrame = Part.CFrame + Vector3.new(0,0,Position) | |
| 1408 | end | |
| 1409 | function MoveXPart(Part, Position) | |
| 1410 | Part.CFrame = Part.CFrame + Vector3.new(Position,0,0) | |
| 1411 | end | |
| 1412 | game.Players[Victim].Character.HumanoidRootPart.Anchored = true | |
| 1413 | OMGCREEPY = Instance.new("Sound")
| |
| 1414 | OMGCREEPY.Parent = o1 | |
| 1415 | OMGCREEPY.Volume = .5 | |
| 1416 | OMGCREEPY.SoundId = "rbxassetid://177775134" | |
| 1417 | for i,v in pairs (o1:GetChildren()) do | |
| 1418 | if v:IsA("Part") then
| |
| 1419 | v.Material = "SmoothPlastic" | |
| 1420 | v.BackSurface = "SmoothNoOutlines" | |
| 1421 | v.FrontSurface = "SmoothNoOutlines" | |
| 1422 | v.BottomSurface = "SmoothNoOutlines" | |
| 1423 | v.LeftSurface = "SmoothNoOutlines" | |
| 1424 | v.RightSurface = "SmoothNoOutlines" | |
| 1425 | v.TopSurface = "SmoothNoOutlines" | |
| 1426 | end | |
| 1427 | end | |
| 1428 | OMGCREEPY:Play() | |
| 1429 | o21:Play() | |
| 1430 | MoveSpawn(o1,game.Players[Victim].Character.HumanoidRootPart.Position) | |
| 1431 | for i=1,51 do | |
| 1432 | MoveX(o1,-3) | |
| 1433 | wait(.05) | |
| 1434 | end | |
| 1435 | wait(.5) | |
| 1436 | MoveZPart(o12,-1) | |
| 1437 | wait(.2) | |
| 1438 | for i=1,6 do | |
| 1439 | MoveXPart(o12,1) | |
| 1440 | wait(.1) | |
| 1441 | end | |
| 1442 | wait(.5) | |
| 1443 | game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame | |
| 1444 | wait(.5) | |
| 1445 | game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame | |
| 1446 | wait(.5) | |
| 1447 | MoveZPart(o12,1) | |
| 1448 | wait(.2) | |
| 1449 | ||
| 1450 | for i=1,6 do | |
| 1451 | MoveXPart(o12,-1) | |
| 1452 | wait(.1) | |
| 1453 | end | |
| 1454 | for i=1,50 do | |
| 1455 | MoveX(o1,-3) | |
| 1456 | game.Players[Victim].Character.HumanoidRootPart.CFrame = o85.CFrame | |
| 1457 | wait(.05) | |
| 1458 | end | |
| 1459 | game.Players[Victim].Character.Head.face.Texture = "rbxassetid://629925029" | |
| 1460 | game.Players[Victim].Character.HumanoidRootPart.CFrame = o123.CFrame | |
| 1461 | SCREAM = Instance.new("Sound")
| |
| 1462 | SCREAM.Parent = game.Players[Victim].Character.Head | |
| 1463 | SCREAM.SoundId = "rbxassetid://138167455" | |
| 1464 | SCREAM:Play() | |
| 1465 | wait(2.5) | |
| 1466 | game.Players[Victim].Character.Head.BrickColor = BrickColor.new("Maroon")
| |
| 1467 | MoveZPart(o12,-1) | |
| 1468 | wait(.2) | |
| 1469 | for i=1,6 do | |
| 1470 | MoveXPart(o12,1) | |
| 1471 | wait(.1) | |
| 1472 | end | |
| 1473 | wait(.5) | |
| 1474 | game.Players[Victim].Character.HumanoidRootPart.CFrame = o86.CFrame | |
| 1475 | wait(.5) | |
| 1476 | MoveZPart(o12,1) | |
| 1477 | wait(.2) | |
| 1478 | for i=1,6 do | |
| 1479 | MoveXPart(o12,-1) | |
| 1480 | wait(.1) | |
| 1481 | end | |
| 1482 | game.Players[Victim].Character.Humanoid.Health = 0 | |
| 1483 | player = game.Players[Victim] | |
| 1484 | char = player.Character | |
| 1485 | char.Archivable = true | |
| 1486 | local rg = char:Clone() | |
| 1487 | rg.HumanoidRootPart:Destroy() | |
| 1488 | rg.Name = "" | |
| 1489 | rg.Humanoid.MaxHealth = 0 | |
| 1490 | for i, v in pairs(rg.Torso:GetChildren()) do | |
| 1491 | if v:IsA("Motor6D") then
| |
| 1492 | v:Destroy() | |
| 1493 | end | |
| 1494 | end | |
| 1495 | ||
| 1496 | local n = Instance.new("Glue", rg.Torso)
| |
| 1497 | n.Name = "Neck" | |
| 1498 | n.Part0 = rg.Torso | |
| 1499 | n.Part1 = rg.Head | |
| 1500 | n.C0 = CFrame.new(0, 1, 0) | |
| 1501 | n.C1 = CFrame.new(0, -0.5, 0) | |
| 1502 | ||
| 1503 | local rs = Instance.new("Glue", rg.Torso)
| |
| 1504 | rs.Name = "Right Shoulder" | |
| 1505 | rs.Part0 = rg.Torso | |
| 1506 | rs.Part1 = rg["Right Arm"] | |
| 1507 | rs.C0 = CFrame.new(1.5, 0.5, 0) | |
| 1508 | rs.C1 = CFrame.new(0, 0.5, 0) | |
| 1509 | local ls = Instance.new("Glue", rg.Torso)
| |
| 1510 | ls.Name = "Left Shoulder" | |
| 1511 | ls.Part0 = rg.Torso | |
| 1512 | ls.Part1 = rg["Left Arm"] | |
| 1513 | ls.C0 = CFrame.new(-1.5, 0.5, 0) | |
| 1514 | ls.C1 = CFrame.new(0, 0.5, 0) | |
| 1515 | ||
| 1516 | local rh = Instance.new("Glue", rg.Torso)
| |
| 1517 | rh.Name = "Right Hip" | |
| 1518 | rh.Part0 = rg.Torso | |
| 1519 | rh.Part1 = rg["Right Leg"] | |
| 1520 | rh.C0 = CFrame.new(0.5, -1, 0) | |
| 1521 | rh.C1 = CFrame.new(0, 1, 0) | |
| 1522 | local lh = Instance.new("Glue", rg.Torso)
| |
| 1523 | lh.Name = "Left Hip" | |
| 1524 | lh.Part0 = rg.Torso | |
| 1525 | lh.Part1 = rg["Left Leg"] | |
| 1526 | lh.C0 = CFrame.new(-0.5, -1, 0) | |
| 1527 | lh.C1 = CFrame.new(0, 1, 0) | |
| 1528 | char.Torso:Destroy() | |
| 1529 | char.Head:Destroy() | |
| 1530 | char["Left Leg"]:Destroy() | |
| 1531 | char["Left Arm"]:Destroy() | |
| 1532 | char["Right Leg"]:Destroy() | |
| 1533 | char["Right Arm"]:Destroy() | |
| 1534 | rg.Parent = game.Workspace | |
| 1535 | rg.Head.BrickColor = BrickColor.new("Maroon")
| |
| 1536 | function DEATH () | |
| 1537 | OHHNELLY = Instance.new("Part")
| |
| 1538 | OHHNELLY.Parent = workspace | |
| 1539 | OHHNELLY.Anchored = false | |
| 1540 | OHHNELLY.Material = Enum.Material.SmoothPlastic | |
| 1541 | OHHNELLY.BrickColor = BrickColor.new("Maroon")
| |
| 1542 | OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003) | |
| 1543 | OHHNELLY.Position = rg.Head.Position | |
| 1544 | OHHNELLY.Color = Color3.new(0.458824, 0, 0) | |
| 1545 | OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1546 | OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1547 | OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1548 | OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1549 | OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1550 | OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1551 | end | |
| 1552 | for i=1,20 do | |
| 1553 | DEATH() | |
| 1554 | MoveX(o1,-3) | |
| 1555 | wait(.05) | |
| 1556 | end | |
| 1557 | o1:Destroy() |