Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Created with ttyyuu12345's compiler
- --Errors: Camera,Terrain
- local mess_handle=Instance.new("Message",workspace)
- mess_handle.Text = "Inserting map, please wait"
- wait(0.5)
- for i,w in pairs(workspace:GetChildren()) do
- if w.className~="Terrain" then
- if (w~=mess_handle)and(w~=script) then
- ypcall(function() w:Destroy() end)
- end
- end
- end
- Create = function(itemClass,tabl)
- local item = Instance.new(itemClass)
- for i,v in pairs(tabl) do
- local a,b = ypcall(function() return item[i] end)
- if a then
- item[i] = tabl[i]
- end
- end
- return item
- end
- function runDummyScript(f,scri)
- local oldenv = getfenv(f)
- local newenv = setmetatable({}, {
- __index = function(_, k)
- if k:lower() == 'script' then
- return scri
- else
- return oldenv[k]
- end
- end
- })
- setfenv(f, newenv)
- ypcall(function() f() end)
- end
- cors = {}
- mas = Instance.new("Model",game:GetService("Lighting"))
- mas.Name = "CompiledModel"
- o3 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Reddish brown"),
- ["Position"] = Vector3.new(-194, 1.59999895, -11),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-194, 1.59999895, -11, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(24, 0.800000012, 400),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.411765, 0.25098, 0.156863),
- })
- o4 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Reddish brown"),
- ["Position"] = Vector3.new(-6, 1.59999895, 183.5),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 1.59999895, 183.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(352, 0.800000012, 11),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.411765, 0.25098, 0.156863),
- })
- o5 = Create("SpawnLocation",{
- ["Parent"] = mas,
- ["Position"] = Vector3.new(-17, 12.9999876, -12),
- ["Rotation"] = Vector3.new(-180, 0, -180),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-17, 12.9999876, -12, -1, 0, 0, 0, 1, 0, 0, 0, -1),
- ["Size"] = Vector3.new(6, 1.20000005, 6),
- ["BackSurface"] = Enum.SurfaceType.Weld,
- ["BottomSurface"] = Enum.SurfaceType.Weld,
- ["FrontSurface"] = Enum.SurfaceType.Weld,
- ["LeftSurface"] = Enum.SurfaceType.Weld,
- ["RightSurface"] = Enum.SurfaceType.Weld,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Duration"] = 0,
- })
- o6 = Create("Decal",{
- ["Parent"] = o5,
- ["Texture"] = "rbxasset://Textures/SpawnLocation.png",
- ["Face"] = Enum.NormalId.Top,
- })
- o7 = Create("Part",{
- ["Name"] = "Weapon Taker",
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Dark green"),
- ["Position"] = Vector3.new(-16, 12.1999836, -11),
- ["Rotation"] = Vector3.new(-0, -90, 0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-16, 12.1999836, -11, 0, 0, -1, 0, 1, 0, 1, 0, 0),
- ["CanCollide"] = false,
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(34, 0.400000006, 30),
- ["BackSurface"] = Enum.SurfaceType.Weld,
- ["BottomSurface"] = Enum.SurfaceType.Weld,
- ["FrontSurface"] = Enum.SurfaceType.Weld,
- ["LeftSurface"] = Enum.SurfaceType.Weld,
- ["RightSurface"] = Enum.SurfaceType.Weld,
- ["TopSurface"] = Enum.SurfaceType.Weld,
- ["Color"] = Color3.new(0.156863, 0.498039, 0.278431),
- })
- o8 = Create("Script",{
- ["Name"] = "TakeWepScript",
- ["Parent"] = o7,
- })
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- -- Ganondude
- -- This script removes all the weapons/items of anybody who touches it, except for those whose names
- -- are in the "keepers" list.
- keepers = {"SkyTitan", "Leonperson", "", ""}
- -- These are customizeable criteria regarding exactly what is removed, and where it is removed from:
- RemoveTools = true
- RemoveHopperBins = true
- RemoveFromBackpack = true
- RemoveFromCharacter = true
- RemoveForceField = false
- script.Parent.BrickColor = BrickColor.new(21)
- function getPlayer(humanoid)
- local players = game.Players:GetChildren()
- for i = 1, #players do
- if (players[i].Character.Humanoid == humanoid) then return players[i] end
- end
- return nil
- end
- function checkKeeper(player)
- for i = 1,#keepers do
- if (keepers[i] == player.Name) then return true end
- end
- return false
- end
- function RemoveWeapons(parent)
- local weapons = parent:GetChildren()
- for i = 1,#weapons do
- if (weapons[i].className == "Tool") and (RemoveTools == true) then
- weapons[i]:remove()
- script.Parent.BrickColor = BrickColor.new(22)
- elseif (weapons[i].className == "HopperBin") and (RemoveHopperBins == true) then
- weapons[i]:remove()
- script.Parent.BrickColor = BrickColor.new(22)
- end
- end
- end
- local debounce = false
- function onTouched(hit)
- local human = hit.Parent:findFirstChild("Humanoid")
- if (human == nil) then return end
- local player = getPlayer(human)
- if (player == nil) then return end
- if (checkKeeper(player) == true) or (debounce == true) then return end
- debounce = true
- if (RemoveFromBackpack == true) then
- local backpack = player.Backpack
- if (table.maxn(backpack:GetChildren()) > 0) then
- RemoveWeapons(backpack)
- end
- end
- if (RemoveFromCharacter == true) then
- RemoveWeapons(player.Character)
- end
- if (RemoveForceField == true) then
- local charparts = player.Character:GetChildren()
- for i = 1,#charparts do
- if (charparts[i].className == "ForceField") then
- charparts[i]:remove()
- script.Parent.BrickColor = BrickColor.new(22)
- end
- end
- end
- wait(0.5)
- script.Parent.BrickColor = BrickColor.new(21)
- debounce = false
- end
- script.Parent.Touched:connect(onTouched)
- -- Ganondude
- end,o8)
- end))
- o9 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Reddish brown"),
- ["Position"] = Vector3.new(-6, 6.39999104, -11),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 6.39999104, -11, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(400, 8.8000021, 400),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.411765, 0.25098, 0.156863),
- })
- o10 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Reddish brown"),
- ["Position"] = Vector3.new(-6, 0.600000978, -11),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 0.600000978, -11, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(400, 1.20000005, 400),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.411765, 0.25098, 0.156863),
- })
- o11 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Earth green"),
- ["Position"] = Vector3.new(-6, 11.3999844, -11),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 11.3999844, -11, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(400, 1.20000005, 400),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.152941, 0.27451, 0.176471),
- })
- o12 = Create("Model",{
- ["Name"] = "Throne Palace",
- ["Parent"] = mas,
- })
- o13 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 30.0972557, -211.5),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 30.0972557, -211.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(88, 35.9000282, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o14 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-30, 17.9970417, -205),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-30, 17.9970417, -205, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(40, 11.9000044, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o15 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-44, 17.9969711, -179),
- ["Rotation"] = Vector3.new(0, 90, 0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-44, 17.9969711, -179, 0, 0, 1, 0, 1, 0, -1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(40, 11.9000044, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o16 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-26, 17.9968624, -165),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-26, 17.9968624, -165, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(24, 11.9000006, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o17 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(18, 17.9970913, -205),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(18, 17.9970913, -205, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(40, 11.9000044, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o18 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(14, 17.9968357, -165),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(14, 17.9968357, -165, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(24, 11.9000006, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o19 = Create("Model",{
- ["Name"] = "Torch",
- ["Parent"] = o12,
- })
- o20 = Create("Part",{
- ["Parent"] = o19,
- ["BrickColor"] = BrickColor.new("Bright blue"),
- ["Transparency"] = 7,
- ["Position"] = Vector3.new(-12.4727783, 30.8085003, -206.562866),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-12.4727783, 30.8085003, -206.562866, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Shape"] = Enum.PartType.Ball,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0509804, 0.411765, 0.67451),
- })
- o21 = Create("Fire",{
- ["Parent"] = o20,
- ["Size"] = 8,
- ["Color"] = Color3.new(0, 1, 1),
- ["SecondaryColor"] = Color3.new(0, 1, 1),
- })
- o22 = Create("Part",{
- ["Name"] = "Ring",
- ["Parent"] = o19,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(-12.5, 29.9705391, -206.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-12.5, 29.9705391, -206.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o23 = Create("SpecialMesh",{
- ["Parent"] = o22,
- ["MeshId"] = "http://www.roblox.com/asset/?id=3270017",
- ["MeshType"] = Enum.MeshType.FileMesh,
- })
- o24 = Create("Part",{
- ["Name"] = "Ring",
- ["Parent"] = o19,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(-12.5, 27.8396263, -206.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-12.5, 27.8396263, -206.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o25 = Create("SpecialMesh",{
- ["Parent"] = o24,
- ["MeshId"] = "http://www.roblox.com/asset/?id=3270017",
- ["MeshType"] = Enum.MeshType.FileMesh,
- })
- o26 = Create("Part",{
- ["Name"] = "BevelCylinder",
- ["Parent"] = o19,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(-12.5, 26.9999962, -206.5),
- ["Rotation"] = Vector3.new(180, -0, -180),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-12.5, 26.9999962, -206.5, -1, 0, -0, -0, 1, -0, -0, 0, -1),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 6, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o27 = Create("CylinderMesh",{
- ["Parent"] = o26,
- })
- o28 = Create("Part",{
- ["Name"] = "Ring",
- ["Parent"] = o19,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(-12.5, 25.5825157, -206.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-12.5, 25.5825157, -206.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o29 = Create("SpecialMesh",{
- ["Parent"] = o28,
- ["MeshId"] = "http://www.roblox.com/asset/?id=3270017",
- ["MeshType"] = Enum.MeshType.FileMesh,
- })
- o30 = Create("Model",{
- ["Name"] = "Torch",
- ["Parent"] = o12,
- })
- o31 = Create("Part",{
- ["Parent"] = o30,
- ["BrickColor"] = BrickColor.new("Bright blue"),
- ["Transparency"] = 7,
- ["Position"] = Vector3.new(0.527221024, 30.8085709, -206.562866),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(0.527221024, 30.8085709, -206.562866, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Shape"] = Enum.PartType.Ball,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0509804, 0.411765, 0.67451),
- })
- o32 = Create("Fire",{
- ["Parent"] = o31,
- ["Size"] = 8,
- ["Color"] = Color3.new(0, 1, 1),
- ["SecondaryColor"] = Color3.new(0, 1, 1),
- })
- o33 = Create("Part",{
- ["Name"] = "Ring",
- ["Parent"] = o30,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(0.5, 29.9706097, -206.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(0.5, 29.9706097, -206.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o34 = Create("SpecialMesh",{
- ["Parent"] = o33,
- ["MeshId"] = "http://www.roblox.com/asset/?id=3270017",
- ["MeshType"] = Enum.MeshType.FileMesh,
- })
- o35 = Create("Part",{
- ["Name"] = "Ring",
- ["Parent"] = o30,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(0.5, 27.8397026, -206.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(0.5, 27.8397026, -206.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o36 = Create("SpecialMesh",{
- ["Parent"] = o35,
- ["MeshId"] = "http://www.roblox.com/asset/?id=3270017",
- ["MeshType"] = Enum.MeshType.FileMesh,
- })
- o37 = Create("Part",{
- ["Name"] = "BevelCylinder",
- ["Parent"] = o30,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(0.5, 26.9999962, -206.5),
- ["Rotation"] = Vector3.new(180, -0, -180),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(0.5, 26.9999962, -206.5, -1, 0, -0, -0, 1, -0, -0, 0, -1),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 6, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o38 = Create("CylinderMesh",{
- ["Parent"] = o37,
- })
- o39 = Create("Part",{
- ["Name"] = "Ring",
- ["Parent"] = o30,
- ["BrickColor"] = BrickColor.new("Black"),
- ["Position"] = Vector3.new(0.5, 25.5825844, -206.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(0.5, 25.5825844, -206.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Symmetric,
- ["Size"] = Vector3.new(1, 1, 1),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
- })
- o40 = Create("SpecialMesh",{
- ["Parent"] = o39,
- ["MeshId"] = "http://www.roblox.com/asset/?id=3270017",
- ["MeshType"] = Enum.MeshType.FileMesh,
- })
- o41 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 23.2972355, -205),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 23.2972355, -205, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o42 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 21.7972317, -203),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 21.7972317, -203, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 16),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o43 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 18.7970943, -199),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 18.7970943, -199, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 24),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o44 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 20.2971401, -201),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 20.2971401, -201, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 20),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o45 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 17.2970963, -197),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 17.2970963, -197, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 28),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o46 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 15.8970976, -195),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 15.8970976, -195, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 32),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o47 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 14.3970575, -193),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 14.3970575, -193, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 36),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o48 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 12.8969679, -191),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 12.8969679, -191, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(8, 1.5, 40),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o49 = Create("Model",{
- ["Name"] = "Throne of Darkness",
- ["Parent"] = o12,
- })
- o50 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-7.59997606, 31.1000004, -207.5),
- ["Rotation"] = Vector3.new(90, -0, 90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-7.59997606, 31.1000004, -207.5, 0, -1, -0, 0, -0, -1, 1, -0, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 2),
- ["BackSurface"] = Enum.SurfaceType.Inlet,
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o51 = Create("SpecialMesh",{
- ["Parent"] = o50,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o52 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-7.59997606, 29.1000004, -207.5),
- ["Rotation"] = Vector3.new(-90, 0, 90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-7.59997606, 29.1000004, -207.5, -0, -1, 0, -0, -0, 1, -1, -0, 0),
- ["Size"] = Vector3.new(1, 1.20000005, 2),
- ["BackSurface"] = Enum.SurfaceType.Studs,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o53 = Create("SpecialMesh",{
- ["Parent"] = o52,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o54 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-4.40002394, 31.1000004, -207.5),
- ["Rotation"] = Vector3.new(90, -0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-4.40002394, 31.1000004, -207.5, -0, 1, -0, -0, 0, -1, -1, 0, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 2),
- ["BackSurface"] = Enum.SurfaceType.Inlet,
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o55 = Create("SpecialMesh",{
- ["Parent"] = o54,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o56 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-4.40002394, 29.1000004, -207.5),
- ["Rotation"] = Vector3.new(-90, 0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-4.40002394, 29.1000004, -207.5, 0, 1, 0, 0, 0, 1, 1, 0, 0),
- ["Size"] = Vector3.new(1, 1.20000005, 2),
- ["BackSurface"] = Enum.SurfaceType.Studs,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o57 = Create("SpecialMesh",{
- ["Parent"] = o56,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o58 = Create("Part",{
- ["Name"] = "Thingy",
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 27.1000004, -207.5),
- ["Rotation"] = Vector3.new(-0, -90, 0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 27.1000004, -207.5, 0, 0, -1, 0, 1, -0, 1, 0, -0),
- ["Size"] = Vector3.new(1, 6, 2),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o59 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-8.59997559, 25.6000004, -207.5),
- ["Rotation"] = Vector3.new(90, -0, 90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-8.59997559, 25.6000004, -207.5, 0, -1, -0, 0, -0, -1, 1, -0, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o60 = Create("SpecialMesh",{
- ["Parent"] = o59,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o61 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-8.59997559, 25.6000004, -205.5),
- ["Rotation"] = Vector3.new(90, -0, 90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-8.59997559, 25.6000004, -205.5, 0, -1, -0, 0, -0, -1, 1, -0, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o62 = Create("SpecialMesh",{
- ["Parent"] = o61,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o63 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-7.5, 25.6000004, -208.600006),
- ["Rotation"] = Vector3.new(90, -0, 180),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-7.5, 25.6000004, -208.600006, -1, -0, -0, -0, -0, -1, -0, -1, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o64 = Create("SpecialMesh",{
- ["Parent"] = o63,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o65 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-4.5, 25.6000004, -208.600006),
- ["Rotation"] = Vector3.new(90, -0, 180),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-4.5, 25.6000004, -208.600006, -1, -0, -0, -0, -0, -1, -0, -1, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o66 = Create("SpecialMesh",{
- ["Parent"] = o65,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o67 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-3.40002489, 25.6000004, -207.5),
- ["Rotation"] = Vector3.new(90, -0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-3.40002489, 25.6000004, -207.5, -0, 1, -0, -0, 0, -1, -1, 0, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o68 = Create("SpecialMesh",{
- ["Parent"] = o67,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o69 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-4.52014208, 25.2371197, -206.500244),
- ["Rotation"] = Vector3.new(179.999924, 1.15334976, -179.998825),
- ["RotVelocity"] = Vector3.new(-0.00589787588, 0.0799385235, -0.0023743629),
- ["Velocity"] = Vector3.new(0.144369408, -0.00261189463, 0.00224678707),
- ["CFrame"] = CFrame.new(-4.52014208, 25.2371197, -206.500244, -0.999797583, 2.06116674e-005, 0.0201283898, 2.05902725e-005, 1, -1.27013163e-006, -0.0201283898, -8.55425242e-007, -0.999797583),
- ["Size"] = Vector3.new(1, 2.4000001, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o70 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-3.40002489, 25.6000004, -205.5),
- ["Rotation"] = Vector3.new(90, -0, -90),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-3.40002489, 25.6000004, -205.5, -0, 1, -0, -0, 0, -1, -1, 0, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o71 = Create("SpecialMesh",{
- ["Parent"] = o70,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o72 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-7.47973585, 25.2369862, -206.499634),
- ["Rotation"] = Vector3.new(179.998566, -1.16202676, 179.997208),
- ["RotVelocity"] = Vector3.new(0.00455596624, 0.00282305386, 0.000738576287),
- ["Velocity"] = Vector3.new(-0.155526832, -0.00262440182, -0.0438558795),
- ["CFrame"] = CFrame.new(-7.47973585, 25.2369862, -206.499634, -0.999794245, -4.86969257e-005, -0.0202798042, -4.81986972e-005, 1, -2.50566318e-005, 0.0202798042, -2.40740173e-005, -0.999794245),
- ["Size"] = Vector3.new(1, 2.4000001, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o73 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-7.5, 25.6000004, -204.399994),
- ["Rotation"] = Vector3.new(90, -0, -0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-7.5, 25.6000004, -204.399994, 1, 0, -0, 0, 0, -1, 0, 1, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o74 = Create("SpecialMesh",{
- ["Parent"] = o73,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o75 = Create("Seat",{
- ["Parent"] = o49,
- ["Material"] = Enum.Material.Slate,
- ["BrickColor"] = BrickColor.new("Bright red"),
- ["Position"] = Vector3.new(-5.46581984, 25.0371342, -202.098633),
- ["Rotation"] = Vector3.new(90.0000687, 1.92099069e-005, 166.731552),
- ["RotVelocity"] = Vector3.new(-0.00331454398, -4.95931367e-008, 0.00114816451),
- ["Velocity"] = Vector3.new(0.000203548319, -0.000256644853, 0.000509163947),
- ["CFrame"] = CFrame.new(-5.46581984, 25.0371342, -202.098633, -0.973305225, -0.229513794, 3.35276127e-007, -5.88595867e-007, 1.13248825e-006, -0.999999881, 0.229513794, -0.973305345, -1.07288361e-006),
- ["Size"] = Vector3.new(2, 1.20000005, 2),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.768628, 0.156863, 0.109804),
- })
- o76 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-4.5, 25.6000004, -204.399994),
- ["Rotation"] = Vector3.new(90, -0, -0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-4.5, 25.6000004, -204.399994, 1, 0, -0, 0, 0, -1, 0, 1, -0),
- ["Size"] = Vector3.new(1, 1.20000005, 3),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o77 = Create("SpecialMesh",{
- ["Parent"] = o76,
- ["MeshType"] = Enum.MeshType.Wedge,
- })
- o78 = Create("Part",{
- ["Parent"] = o49,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(-6, 24.7000027, -204.5),
- ["Rotation"] = Vector3.new(-0, -90, 0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 24.7000027, -204.5, 0, 0, -1, 0, 1, -0, 1, 0, -0),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(1, 1.20000005, 2),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o79 = Create("Part",{
- ["Parent"] = o12,
- ["BrickColor"] = BrickColor.new("Really black"),
- ["Position"] = Vector3.new(32, 17.9969082, -179),
- ["Rotation"] = Vector3.new(0, 90, 0),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(32, 17.9969082, -179, 0, 0, 1, 0, 1, 0, -1, 0, 0),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(40, 11.9000044, 12),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
- })
- o80 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Reddish brown"),
- ["Position"] = Vector3.new(-6, 1.59999895, -205.5),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(-6, 1.59999895, -205.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(352, 0.800000012, 11),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.411765, 0.25098, 0.156863),
- })
- o81 = Create("Part",{
- ["Parent"] = mas,
- ["Material"] = Enum.Material.Grass,
- ["BrickColor"] = BrickColor.new("Reddish brown"),
- ["Position"] = Vector3.new(182, 1.59999895, -11),
- ["Anchored"] = true,
- ["CFrame"] = CFrame.new(182, 1.59999895, -11, 1, 0, 0, 0, 1, 0, 0, 0, 1),
- ["FormFactor"] = Enum.FormFactor.Plate,
- ["Size"] = Vector3.new(24, 0.800000012, 400),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.411765, 0.25098, 0.156863),
- })
- mas.Parent = workspace
- mas:MakeJoints()
- local mas1 = mas:GetChildren()
- for i=1,#mas1 do
- mas1[i].Parent = script
- ypcall(function() mas1[i]:MakeJoints() end)
- end
- mas:Destroy()
- for i=1,#cors do
- coroutine.resume(cors[i])
- end
- mess_handle.Text = "Resetting"
- for i,v in pairs(game:GetService("Players"):GetPlayers()) do
- v:LoadCharacter()
- end
- wait(1)
- mess_handle:Remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement