Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
- do
- script.Parent = owner.Character
- local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
- local function NewFakeEvent()
- local Bind = Instance.new("BindableEvent")
- local Fake;Fake = {Connections = {},
- fakeEvent=true;
- Connect=function(self,Func)
- Bind.Event:connect(Func)
- self.Connections[Bind] = true
- return setmetatable({Connected = true},{
- __index = function (self,Index)
- if Index:lower() == "disconnect" then
- return function() Fake.Connections[Bind] = false;self.Connected = false end
- end
- return Fake[Index]
- end;
- __tostring = function() return "Connection" end;
- })
- end}
- Fake.connect = Fake.Connect;return Fake;
- end
- local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
- local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
- local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
- self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
- end};ContextActionService.UnBindAction = ContextActionService.BindAction
- local function TriggerEvent(self,Event,...)
- local Trigger = Mouse[Event]
- if Trigger and Trigger.fakeEvent and Trigger.Connections then
- for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
- end
- end
- Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
- Event.OnServerEvent:Connect(function(FiredBy,Input)
- if FiredBy.Name ~= owner.Name then return end
- if Input.MouseEvent then
- Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
- else
- local Begin = Input.UserInputState == Enum.UserInputState.Begin
- if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
- for _,Action in pairs(ContextActionService.Actions) do
- for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
- end
- Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
- UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
- end
- end)
- InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
- Event.Parent = NLS([[
- local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
- local Input = function(Input,gameProcessedEvent)
- if gameProcessedEvent then return end
- Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
- end
- UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
- local Hit,Target
- while wait(1/30) do
- if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
- Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
- end
- end
- ]],owner.Character)
- end
- RealGame = game;game = setmetatable({},{
- __index = function (self,Index)
- local Sandbox = function (Thing)
- if Thing:IsA("Player") then
- local RealPlayer = Thing
- return setmetatable({},{
- __index = function (self,Index)
- local Type = type(RealPlayer[Index])
- if Type == "function" then
- if Index:lower() == "getmouse" or Index:lower() == "mouse" then
- return function (self)return InternalData["Mouse"] end
- end
- return function (self,...)return RealPlayer[Index](RealPlayer,...) end
- end
- return RealPlayer[Index]
- end;
- __tostring = function(self) return RealPlayer.Name end
- })
- end
- end
- if RealGame[Index] then
- local Type = type(RealGame[Index])
- if Type == "function" then
- if Index:lower() == "getservice" or Index:lower() == "service" then
- return function (self,Service)
- local FakeServices = {
- ["players"] = function()
- return setmetatable({},{
- __index = function (self2,Index2)
- local RealService = RealGame:GetService(Service)
- local Type2 = type(Index2)
- if Type2 == "function" then
- return function (self,...) return RealService[Index2](RealService,...)end
- else
- if Index2:lower() == "localplayer" then return Sandbox(owner) end
- return RealService[Index2]
- end
- end;
- __tostring = function(self) return RealGame:GetService(Service).Name end
- })
- end;
- ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
- ["userinputservice"] = function() return InternalData["UserInputService"] end;
- ["runservice"] = function()
- return setmetatable({},{
- __index = function(self2,Index2)
- local RealService = RealGame:GetService(Service)
- local Type2 = type(Index2)
- if Type2 == "function" then
- return function (self,...) return RealService[Index2](RealService,...) end
- else
- local RunServices = {
- ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
- ["renderstepped"] = function() return RealService["Stepped"] end
- }
- if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
- return RealService[Index2]
- end
- end
- })
- end
- }
- if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
- return RealGame:GetService(Service)
- end
- end
- return function (self,...) return RealGame[Index](RealGame,...) end
- else
- if game:GetService(Index) then return game:GetService(Index) end
- return RealGame[Index]
- end
- end
- return nil
- end
- });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
- print(" made by zachrogamehard133447")
- local runDummyScript = function(f,scri)
- local oldenv = getfenv(f)
- local newenv = setmetatable({}, {
- __index = function(_, k)
- if k:lower() == 'script' then
- return scri
- else
- return oldenv[k]
- end
- end
- })
- setfenv(f, newenv)
- ypcall(function() f() end)
- end
- cors = {}
- mas = Instance.new("Model",game:GetService("Lighting"))
- mas.Name = "CompiledModel"
- o1 = Instance.new("Model")
- o2 = Instance.new("Part")
- o3 = Instance.new("SpecialMesh")
- o4 = Instance.new("ManualWeld")
- o5 = Instance.new("Weld")
- o6 = Instance.new("Weld")
- o7 = Instance.new("Model")
- o8 = Instance.new("Part")
- o13 = Instance.new("SpecialMesh")
- o14 = Instance.new("StringValue")
- o15 = Instance.new("Vector3Value")
- o16 = Instance.new("Vector3Value")
- o17 = Instance.new("Vector3Value")
- o18 = Instance.new("Vector3Value")
- o19 = Instance.new("Vector3Value")
- o20 = Instance.new("Decal")
- o21 = Instance.new("Snap")
- o22 = Instance.new("Part")
- o23 = Instance.new("Part")
- o25 = Instance.new("Weld")
- o26 = Instance.new("Weld")
- o27 = Instance.new("Weld")
- o28 = Instance.new("Weld")
- o29 = Instance.new("Weld")
- o30 = Instance.new("Weld")
- o31 = Instance.new("Part")
- o32 = Instance.new("Snap")
- o33 = Instance.new("Part")
- o35 = Instance.new("Weld")
- o36 = Instance.new("Weld")
- o37 = Instance.new("Weld")
- o38 = Instance.new("Weld")
- o39 = Instance.new("Weld")
- o40 = Instance.new("Weld")
- o41 = Instance.new("Part")
- o42 = Instance.new("Snap")
- o43 = Instance.new("Part")
- o44 = Instance.new("Decal")
- o53 = Instance.new("Humanoid")
- o55 = Instance.new("Part")
- o56 = Instance.new("SpecialMesh")
- o57 = Instance.new("StringValue")
- o59 = Instance.new("Weld")
- o61 = Instance.new("Part")
- o62 = Instance.new("SpecialMesh")
- o64 = Instance.new("Vector3Value")
- o65 = Instance.new("Weld")
- o67 = Instance.new("BodyColors")
- o68 = Instance.new("Shirt")
- o69 = Instance.new("ShirtGraphic")
- o70 = Instance.new("Pants")
- o71 = Instance.new("Model")
- o72 = Instance.new("Part")
- o73 = Instance.new("Decal")
- o74 = Instance.new("Script")
- o76 = Instance.new("Weld")
- o77 = Instance.new("Part")
- o78 = Instance.new("Decal")
- o79 = Instance.new("Script")
- o81 = Instance.new("Weld")
- o82 = Instance.new("Part")
- o83 = Instance.new("Decal")
- o84 = Instance.new("Script")
- o86 = Instance.new("Weld")
- o87 = Instance.new("Part")
- o88 = Instance.new("Decal")
- o89 = Instance.new("Script")
- o91 = Instance.new("Part")
- o92 = Instance.new("Decal")
- o93 = Instance.new("Script")
- o95 = Instance.new("Weld")
- o96 = Instance.new("Part")
- o97 = Instance.new("Decal")
- o98 = Instance.new("Script")
- o100 = Instance.new("Part")
- o101 = Instance.new("Decal")
- o102 = Instance.new("Script")
- o104 = Instance.new("Weld")
- o105 = Instance.new("Part")
- o106 = Instance.new("Decal")
- o107 = Instance.new("Script")
- o109 = Instance.new("Weld")
- o110 = Instance.new("Part")
- o111 = Instance.new("Decal")
- o112 = Instance.new("Script")
- o113 = Instance.new("Part")
- o115 = Instance.new("Part")
- o116 = Instance.new("Decal")
- o117 = Instance.new("Script")
- o119 = Instance.new("Part")
- o120 = Instance.new("Weld")
- o121 = Instance.new("Weld")
- o122 = Instance.new("Weld")
- o123 = Instance.new("Part")
- o124 = Instance.new("Weld")
- o125 = Instance.new("Weld")
- o126 = Instance.new("Weld")
- o127 = Instance.new("Weld")
- o128 = Instance.new("Weld")
- o129 = Instance.new("Part")
- o130 = Instance.new("Weld")
- o131 = Instance.new("Weld")
- o132 = Instance.new("Part")
- o133 = Instance.new("Weld")
- o134 = Instance.new("Weld")
- o135 = Instance.new("Part")
- o136 = Instance.new("Weld")
- o137 = Instance.new("Weld")
- o138 = Instance.new("Part")
- o139 = Instance.new("Weld")
- o140 = Instance.new("Weld")
- o141 = Instance.new("Weld")
- o142 = Instance.new("Part")
- o143 = Instance.new("Weld")
- o144 = Instance.new("Weld")
- o145 = Instance.new("Weld")
- o146 = Instance.new("Weld")
- o147 = Instance.new("Weld")
- o148 = Instance.new("Weld")
- o149 = Instance.new("Part")
- o150 = Instance.new("Decal")
- o151 = Instance.new("Script")
- o153 = Instance.new("Weld")
- o154 = Instance.new("Part")
- o155 = Instance.new("Decal")
- o156 = Instance.new("Script")
- o158 = Instance.new("Weld")
- o159 = Instance.new("Part")
- o160 = Instance.new("Decal")
- o161 = Instance.new("Script")
- o163 = Instance.new("Weld")
- o164 = Instance.new("Part")
- o165 = Instance.new("Decal")
- o166 = Instance.new("Script")
- o168 = Instance.new("Weld")
- o169 = Instance.new("Part")
- o170 = Instance.new("Decal")
- o171 = Instance.new("Script")
- o173 = Instance.new("Weld")
- o174 = Instance.new("Weld")
- o175 = Instance.new("Model")
- o176 = Instance.new("Part")
- o177 = Instance.new("Decal")
- o178 = Instance.new("Script")
- o179 = Instance.new("Weld")
- o180 = Instance.new("Part")
- o181 = Instance.new("Decal")
- o182 = Instance.new("Script")
- o183 = Instance.new("Weld")
- o185 = Instance.new("Model")
- o186 = Instance.new("Part")
- o187 = Instance.new("ManualWeld")
- o188 = Instance.new("ManualWeld")
- o189 = Instance.new("Weld")
- o190 = Instance.new("Part")
- o191 = Instance.new("ManualWeld")
- o192 = Instance.new("Part")
- o193 = Instance.new("SurfaceGui")
- o194 = Instance.new("TextLabel")
- o1.Parent = mas
- o2.Name = "Dumpster"
- o2.Parent = o1
- o2.BrickColor = BrickColor.new("Bright green")
- o2.Position = Vector3.new(-83.8000031, 3.50000024, -33.2000008)
- o2.Rotation = Vector3.new(0, 90, 0)
- o2.Anchored = true
- o2.FormFactor = Enum.FormFactor.Custom
- o2.Size = Vector3.new(8.39999962, 7.00000048, 5.59999943)
- o2.CFrame = CFrame.new(-83.8000031, 3.50000024, -33.2000008, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, 0)
- o2.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o2.Position = Vector3.new(-83.8000031, 3.50000024, -33.2000008)
- o3.Parent = o2
- o3.MeshId = "http://www.roblox.com/asset/?id=93054682"
- o3.TextureId = "http://www.roblox.com/asset/?id=93054830"
- o3.MeshType = Enum.MeshType.FileMesh
- o4.Name = "Dumpster-to-Trashcan Strong Joint"
- o4.Parent = o2
- o4.C0 = CFrame.new(-4.19999981, -3.50000024, -2.79999971, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o4.C1 = CFrame.new(-1.5, -2.20000029, 2.5, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, 0)
- o4.Part0 = o2
- o5.Parent = o2
- o5.C0 = CFrame.new(-0.5, -6.5, -22.5, -0, 0, -1, 0, 1, 0, 1, 0, -0)
- o5.C1 = CFrame.new(35.7999954, -3.50000024, 2.80000305, -1, 0, 4.37113883e-08, 0, 1, 0, 0, 0, -1)
- o5.Part0 = o129
- o5.Part1 = o2
- o6.Parent = o2
- o6.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o6.C1 = CFrame.new(-289.199982, -3.50000024, -172.199997, 4.37113883e-08, -1, 0, 0, 0, 1, -1, 0, 0)
- o6.Part1 = o2
- o7.Name = "jeenzaza131"
- o7.Parent = o1
- o7.PrimaryPart = o22
- o8.Name = "Head"
- o8.Parent = o7
- o8.BrickColor = BrickColor.new("Light orange")
- o8.Position = Vector3.new(-83.9906998, 7.50000763, -33.0093002)
- o8.Rotation = Vector3.new(0, 90, 0)
- o8.Anchored = true
- o8.FormFactor = Enum.FormFactor.Symmetric
- o8.Size = Vector3.new(2, 1, 1)
- o8.CFrame = CFrame.new(-83.9906998, 7.50000763, -33.0093002, -8.74227268e-08, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999999464, -4.86387706e-15, 8.74227766e-08)
- o8.TopSurface = Enum.SurfaceType.Smooth
- o8.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o8.Position = Vector3.new(-83.9906998, 7.50000763, -33.0093002)
- o13.Parent = o8
- o13.MeshId = "http://www.roblox.com/asset/?id=83001675"
- o13.Scale = Vector3.new(1.25, 1.25, 1.25)
- o13.MeshType = Enum.MeshType.FileMesh
- o14.Name = "AvatarPartScaleType"
- o14.Parent = o13
- o14.Value = "Classic"
- o15.Name = "FaceCenterAttachment"
- o15.Parent = o13
- o16.Name = "FaceFrontAttachment"
- o16.Parent = o13
- o16.Value = Vector3.new(0, 0, -0.589999974)
- o17.Name = "HairAttachment"
- o17.Parent = o13
- o17.Value = Vector3.new(0, 0.589999974, -0)
- o18.Name = "HatAttachment"
- o18.Parent = o13
- o18.Value = Vector3.new(0, 0.589999974, -0)
- o19.Name = "NeckRigAttachment"
- o19.Parent = o13
- o19.Value = Vector3.new(0, -0.490999997, -0)
- o20.Name = "face"
- o20.Parent = o8
- o20.Texture = "http://www.roblox.com/asset/?id=20418518"
- o21.Parent = o8
- o21.C0 = CFrame.new(0, -0.5, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0)
- o21.C1 = CFrame.new(0, 1, 0, 0.999998331, -8.74226771e-08, -4.86387155e-15, 4.86387452e-15, -1.06303412e-22, -1, -8.74227268e-08, 1, 1.06303412e-22)
- o21.Part0 = o8
- o21.Part1 = o43
- o22.Name = "HumanoidRootPart"
- o22.Parent = o7
- o22.Transparency = 1
- o22.Position = Vector3.new(-83.9906998, 6.00000763, -33.0093002)
- o22.Rotation = Vector3.new(0, 90, 0)
- o22.Anchored = true
- o22.CanCollide = false
- o22.FormFactor = Enum.FormFactor.Symmetric
- o22.Size = Vector3.new(2, 2, 1)
- o22.CFrame = CFrame.new(-83.9906998, 6.00000763, -33.0093002, 0, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.99999994, 0, 0)
- o22.BottomSurface = Enum.SurfaceType.Smooth
- o22.TopSurface = Enum.SurfaceType.Smooth
- o22.Position = Vector3.new(-83.9906998, 6.00000763, -33.0093002)
- o23.Name = "Left Arm"
- o23.Parent = o7
- o23.BrickColor = BrickColor.new("Light orange")
- o23.Position = Vector3.new(-83.9906998, 6.00000763, -31.509304)
- o23.Rotation = Vector3.new(0, 90, 0)
- o23.Anchored = true
- o23.CanCollide = false
- o23.FormFactor = Enum.FormFactor.Symmetric
- o23.Size = Vector3.new(1, 2, 1)
- o23.CFrame = CFrame.new(-83.9906998, 6.00000763, -31.509304, -2.62267378e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994934, -1.45916096e-14, 2.62267946e-07)
- o23.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o23.Position = Vector3.new(-83.9906998, 6.00000763, -31.509304)
- o25.Parent = o23
- o25.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o25.C1 = CFrame.new(-1, 0, 0, 8.74226771e-08, 4.86387155e-15, 0.999997139, 1.06303412e-22, 1, 4.86386901e-15, -1, -1.06303412e-22, -8.74226274e-08)
- o25.Part0 = o23
- o25.Part1 = o43
- o26.Parent = o23
- o26.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o26.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999881, 0, 1, 0, -1, 0, 0)
- o26.Part0 = o23
- o26.Part1 = o43
- o27.Parent = o23
- o27.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o27.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999762, 0, 1, 0, -1, 0, 0)
- o27.Part0 = o23
- o27.Part1 = o43
- o28.Parent = o23
- o28.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o28.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999642, 0, 1, 0, -1, 0, 0)
- o28.Part0 = o23
- o28.Part1 = o43
- o29.Parent = o23
- o29.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o29.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999404, 0, 1, 0, -1, 0, 0)
- o29.Part0 = o23
- o29.Part1 = o43
- o30.Parent = o23
- o30.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- o30.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999523, 0, 1, 0, -1, 0, 0)
- o30.Part0 = o23
- o30.Part1 = o43
- o31.Name = "Left Leg"
- o31.Parent = o7
- o31.BrickColor = BrickColor.new("Light orange")
- o31.Position = Vector3.new(-83.9906998, 4.00000858, -32.5093002)
- o31.Rotation = Vector3.new(0, 90, 0)
- o31.Anchored = true
- o31.CanCollide = false
- o31.FormFactor = Enum.FormFactor.Symmetric
- o31.Size = Vector3.new(1, 2, 1)
- o31.CFrame = CFrame.new(-83.9906998, 4.00000858, -32.5093002, -2.62267378e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994934, -1.45916096e-14, 2.62267946e-07)
- o31.BottomSurface = Enum.SurfaceType.Smooth
- o31.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o31.Position = Vector3.new(-83.9906998, 4.00000858, -32.5093002)
- o32.Parent = o31
- o32.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
- o32.C1 = CFrame.new(-0.5, -1, 0, -0.999997139, -8.74226771e-08, 4.86387155e-15, -4.86386901e-15, -1.06303412e-22, 1, 8.74226274e-08, 1, -1.06303412e-22)
- o32.Part0 = o31
- o32.Part1 = o43
- o33.Name = "Right Arm"
- o33.Parent = o7
- o33.BrickColor = BrickColor.new("Light orange")
- o33.Position = Vector3.new(-83.9906998, 6.00000763, -34.5092964)
- o33.Rotation = Vector3.new(0, 90, 0)
- o33.Anchored = true
- o33.CanCollide = false
- o33.FormFactor = Enum.FormFactor.Symmetric
- o33.Size = Vector3.new(1, 2, 1)
- o33.CFrame = CFrame.new(-83.9906998, 6.00000763, -34.5092964, -2.62267378e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994934, -1.45916096e-14, 2.62267946e-07)
- o33.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o33.Position = Vector3.new(-83.9906998, 6.00000763, -34.5092964)
- o35.Parent = o33
- o35.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o35.C1 = CFrame.new(1, 0, 0, -8.74226771e-08, 4.86387155e-15, -0.999997139, -1.06303412e-22, 1, -4.86386901e-15, 1, -1.06303412e-22, 8.74226274e-08)
- o35.Part0 = o33
- o35.Part1 = o43
- o36.Parent = o33
- o36.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o36.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999762, 0, 1, 0, 1, 0, 0)
- o36.Part0 = o33
- o36.Part1 = o43
- o37.Parent = o33
- o37.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o37.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999404, 0, 1, 0, 1, 0, 0)
- o37.Part0 = o33
- o37.Part1 = o43
- o38.Parent = o33
- o38.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o38.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999523, 0, 1, 0, 1, 0, 0)
- o38.Part0 = o33
- o38.Part1 = o43
- o39.Parent = o33
- o39.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o39.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999642, 0, 1, 0, 1, 0, 0)
- o39.Part0 = o33
- o39.Part1 = o43
- o40.Parent = o33
- o40.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o40.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999881, 0, 1, 0, 1, 0, 0)
- o40.Part0 = o33
- o40.Part1 = o43
- o41.Name = "Right Leg"
- o41.Parent = o7
- o41.BrickColor = BrickColor.new("Light orange")
- o41.Position = Vector3.new(-83.9906998, 4.00000858, -33.5093002)
- o41.Rotation = Vector3.new(0, 90, 0)
- o41.Anchored = true
- o41.CanCollide = false
- o41.FormFactor = Enum.FormFactor.Symmetric
- o41.Size = Vector3.new(1, 2, 1)
- o41.CFrame = CFrame.new(-83.9906998, 4.00000858, -33.5093002, -2.62267264e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994457, -1.45916096e-14, 2.62267946e-07)
- o41.BottomSurface = Enum.SurfaceType.Smooth
- o41.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o41.Position = Vector3.new(-83.9906998, 4.00000858, -33.5093002)
- o42.Parent = o41
- o42.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
- o42.C1 = CFrame.new(0.5, -1, 0, -0.999996662, -8.74226771e-08, 4.86387155e-15, -4.86386647e-15, -1.06303412e-22, 1, 8.74225847e-08, 1, -1.06303412e-22)
- o42.Part0 = o41
- o42.Part1 = o43
- o43.Name = "Torso"
- o43.Parent = o7
- o43.BrickColor = BrickColor.new("Light orange")
- o43.Position = Vector3.new(-83.9906998, 6.00000763, -33.0093002)
- o43.Rotation = Vector3.new(0, 90, 0)
- o43.Anchored = true
- o43.FormFactor = Enum.FormFactor.Symmetric
- o43.Size = Vector3.new(2, 2, 1)
- o43.CFrame = CFrame.new(-83.9906998, 6.00000763, -33.0093002, -1.74845255e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999997795, -9.72774904e-15, 1.74845454e-07)
- o43.LeftSurface = Enum.SurfaceType.Weld
- o43.RightSurface = Enum.SurfaceType.Weld
- o43.Color = Color3.new(0.917647, 0.721569, 0.572549)
- o43.Position = Vector3.new(-83.9906998, 6.00000763, -33.0093002)
- o44.Name = "roblox"
- o44.Parent = o43
- o44.Texture = "http://www.roblox.com/asset/?id=2313289396"
- o53.Parent = o7
- o53.RightLeg = o41
- o53.LeftLeg = o31
- o53.Torso = o22
- o55.Name = "Handle"
- o55.Parent = mas
- o55.Position = Vector3.new(-84.1942978, 7.7412138, -33.0052834)
- o55.Rotation = Vector3.new(0, 90, 0)
- o55.Anchored = true
- o55.CanCollide = false
- o55.Locked = true
- o55.Size = Vector3.new(1.10000002, 1.10000002, 1.10000002)
- o55.CFrame = CFrame.new(-84.1942978, 7.7412138, -33.0052834, 2.59204724e-15, -5.56362707e-08, 1, 7.87137555e-09, 1, 5.56362707e-08, -0.99999994, 7.87137466e-09, 3.02998106e-15)
- o55.BottomSurface = Enum.SurfaceType.Smooth
- o55.TopSurface = Enum.SurfaceType.Smooth
- o55.Position = Vector3.new(-84.1942978, 7.7412138, -33.0052834)
- o56.Name = "SpecialMesh"
- o56.Parent = o55
- o56.MeshId = "rbxassetid://4082083430"
- o56.TextureId = "http://www.roblox.com/asset/?id=4082013712"
- o56.MeshType = Enum.MeshType.FileMesh
- o57.Name = "AvatarPartScaleType"
- o57.Parent = o55
- o57.Value = "Classic"
- o59.Name = "AccessoryWeld"
- o59.Parent = o55
- o59.C0 = CFrame.new(0.00401687622, -0.241205215, -0.396402359, 1, 7.87137555e-09, 3.02998127e-15, -7.87137555e-09, 1, -4.1444258e-16, -3.02998127e-15, 4.14442554e-16, 1)
- o59.C1 = CFrame.new(0, 0, -0.600000024, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o59.Part0 = o55
- o59.Part1 = o8
- o61.Name = "Handle"
- o61.Parent = mas
- o61.Position = Vector3.new(-83.960701, 7.75000763, -33.0093002)
- o61.Rotation = Vector3.new(0, 90, 0)
- o61.Anchored = true
- o61.CanCollide = false
- o61.Locked = true
- o61.FormFactor = Enum.FormFactor.Symmetric
- o61.Size = Vector3.new(1.4200002, 0.870000005, 1.40999985)
- o61.CFrame = CFrame.new(-83.960701, 7.75000763, -33.0093002, 2.59204724e-15, -5.56362707e-08, 1, 7.87137555e-09, 1, 5.56362707e-08, -0.99999994, 7.87137466e-09, 3.02998106e-15)
- o61.BottomSurface = Enum.SurfaceType.Smooth
- o61.TopSurface = Enum.SurfaceType.Smooth
- o61.Position = Vector3.new(-83.960701, 7.75000763, -33.0093002)
- o62.Parent = o61
- o62.MeshId = "rbxassetid://726889242"
- o62.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
- o62.TextureId = "rbxassetid://726600123"
- o62.MeshType = Enum.MeshType.FileMesh
- o64.Name = "OriginalSize"
- o64.Parent = o61
- o64.Value = Vector3.new(1.4200002, 0.870000005, 1.40999985)
- o65.Name = "AccessoryWeld"
- o65.Parent = o61
- o65.C0 = CFrame.new(0, 0.349999994, -0.0299999993, 1, 7.87137555e-09, 3.02998127e-15, -7.87137555e-09, 1, -4.1444258e-16, -3.02998127e-15, 4.14442554e-16, 1)
- o65.C1 = CFrame.new(0, 0.600000024, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o65.Part0 = o61
- o65.Part1 = o8
- o67.Parent = o7
- o67.HeadColor = BrickColor.new("Light orange")
- o67.LeftArmColor = BrickColor.new("Light orange")
- o67.LeftLegColor = BrickColor.new("Light orange")
- o67.RightArmColor = BrickColor.new("Light orange")
- o67.RightLegColor = BrickColor.new("Light orange")
- o67.TorsoColor = BrickColor.new("Light orange")
- o68.Name = "Shirt"
- o68.Parent = o7
- o68.ShirtTemplate = "http://www.roblox.com/asset/?id=1942939563"
- o69.Parent = o7
- o69.Graphic = "http://www.roblox.com/asset/?id=2313289396"
- o70.Name = "Pants"
- o70.Parent = o7
- o70.PantsTemplate = "http://www.roblox.com/asset/?id=1686871468"
- o71.Name = "The house"
- o71.Parent = mas
- o72.Name = "Beep beep Sheep GIF"
- o72.Parent = o71
- o72.BrickColor = BrickColor.new("Bright green")
- o72.Transparency = 1
- o72.Position = Vector3.new(-50.1899986, 0.11500001, -55.7449989)
- o72.Rotation = Vector3.new(90, 0, -180)
- o72.Anchored = true
- o72.FormFactor = Enum.FormFactor.Custom
- o72.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o72.CFrame = CFrame.new(-50.1899986, 0.11500001, -55.7449989, -1, 0, 0, 0, 0, -1, 0, -1, 0)
- o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o72.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o72.Position = Vector3.new(-50.1899986, 0.11500001, -55.7449989)
- o73.Parent = o72
- o73.Texture = "http://www.roblox.com/asset/?id=1764835845"
- o74.Name = "Decal Changer"
- o74.Parent = o73
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1764835845"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1764974744"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1764837172"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1764974744"
- wait(0.10)
- end
- end,o74)
- end))
- o76.Parent = o72
- o76.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o76.C1 = CFrame.new(205.809998, -311.744995, 0.11500001, 1, 0, 0, 0, -1, 0, 0, 0, -1)
- o76.Part1 = o72
- o77.Name = "Bongo Cat"
- o77.Parent = o71
- o77.BrickColor = BrickColor.new("Bright green")
- o77.Transparency = 1
- o77.Position = Vector3.new(-29.625, 3.74500012, -68.8850021)
- o77.Rotation = Vector3.new(-180, 0, -180)
- o77.Anchored = true
- o77.FormFactor = Enum.FormFactor.Custom
- o77.Size = Vector3.new(7.25, 5.49000025, 0.230000019)
- o77.CFrame = CFrame.new(-29.625, 3.74500012, -68.8850021, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o77.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o77.Position = Vector3.new(-29.625, 3.74500012, -68.8850021)
- o78.Parent = o77
- o78.Texture = "http://www.roblox.com/asset/?id=2428849871"
- o79.Name = "Decal Changer"
- o79.Parent = o78
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428849871"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428850132"
- wait(0.12)
- end
- end,o79)
- end))
- o81.Parent = o77
- o81.C0 = CFrame.new(-28, -6.5, 0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o81.C1 = CFrame.new(51.375, -3.74500012, 0.114997864, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o81.Part0 = o119
- o81.Part1 = o77
- o82.Name = "Dance Till Your Dead Dog GIF"
- o82.Parent = o71
- o82.BrickColor = BrickColor.new("Bright green")
- o82.Transparency = 1
- o82.Position = Vector3.new(-40.545002, 3.88499975, -68.9749985)
- o82.Rotation = Vector3.new(-180, 0, -180)
- o82.Anchored = true
- o82.FormFactor = Enum.FormFactor.Custom
- o82.Size = Vector3.new(11.0900002, 7.7699995, 0.0500000007)
- o82.CFrame = CFrame.new(-40.545002, 3.88499975, -68.9749985, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o82.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o82.Position = Vector3.new(-40.545002, 3.88499975, -68.9749985)
- o83.Parent = o82
- o83.Texture = "http://www.roblox.com/asset/?id=1744472418"
- o84.Name = "Decal Changer"
- o84.Parent = o83
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744472418"
- wait(0.06)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744472673"
- wait(0.06)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744473988" --Insert decal's first texture
- wait(0.06)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744474392" --second texture
- wait(0.06) --wait 1 second, you can change this and make it different for every one
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744475067"
- wait(0.06)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744474392"
- wait(0.06)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744473988"
- wait(0.06)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744472673" --second texture
- wait(0.06) --wait 1 second, you can change this and make it different for every one
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1744472418"
- wait(0.06)
- end
- end,o84)
- end))
- o86.Parent = o82
- o86.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o86.C1 = CFrame.new(215.455002, -3.88499975, -324.975006, 1, 0, 0, 0, 0, 1, 0, -1, 0)
- o86.Part1 = o82
- o87.Name = "Dancing Bowser"
- o87.Parent = o71
- o87.BrickColor = BrickColor.new("Bright green")
- o87.Transparency = 1
- o87.Position = Vector3.new(-25.1149998, 6.74500036, -39.1899986)
- o87.Rotation = Vector3.new(0, 90, 0)
- o87.Anchored = true
- o87.FormFactor = Enum.FormFactor.Custom
- o87.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o87.CFrame = CFrame.new(-25.1149998, 6.74500036, -39.1899986, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o87.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o87.Position = Vector3.new(-25.1149998, 6.74500036, -39.1899986)
- o88.Parent = o87
- o88.Texture = "http://www.roblox.com/asset/?id=1092111742"
- o89.Name = "Decal Changer"
- o89.Parent = o88
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092111447"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092111742"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092112007"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092111742"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092111447"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092112712"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092113091"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1092112712"
- wait(0.14)
- end
- end,o89)
- end))
- o91.Name = "Dancing Squidward"
- o91.Parent = o71
- o91.BrickColor = BrickColor.new("Bright green")
- o91.Transparency = 1
- o91.Position = Vector3.new(-55.4049988, 4.7149992, -68.8850021)
- o91.Rotation = Vector3.new(-180, 0, -180)
- o91.Anchored = true
- o91.FormFactor = Enum.FormFactor.Custom
- o91.Size = Vector3.new(6.80999994, 9.4299984, 0.230000019)
- o91.CFrame = CFrame.new(-55.4049988, 4.7149992, -68.8850021, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o91.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o91.Position = Vector3.new(-55.4049988, 4.7149992, -68.8850021)
- o92.Parent = o91
- o92.Texture = "http://www.roblox.com/asset/?id=1087971471"
- o93.Name = "Decal Changer"
- o93.Parent = o92
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1087971471"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1087971671"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1087971783"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1087972059"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1087972197"
- wait(0.12)
- end
- end,o93)
- end))
- o95.Parent = o91
- o95.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o95.C1 = CFrame.new(200.595001, -4.7149992, -324.88501, 1, 0, 0, 0, 0, 1, 0, -1, 0)
- o95.Part1 = o91
- o96.Name = "Deku Hype GIF"
- o96.Parent = o71
- o96.BrickColor = BrickColor.new("Bright green")
- o96.Transparency = 1
- o96.Position = Vector3.new(-25.1149998, 6.74499989, -47.1899986)
- o96.Rotation = Vector3.new(0, 90, 0)
- o96.Anchored = true
- o96.FormFactor = Enum.FormFactor.Custom
- o96.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o96.CFrame = CFrame.new(-25.1149998, 6.74499989, -47.1899986, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o96.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o96.Position = Vector3.new(-25.1149998, 6.74499989, -47.1899986)
- o97.Parent = o96
- o97.Texture = "rbxassetid://1759652180"
- o98.Name = "Decal Changer"
- o98.Parent = o97
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1759651546"
- wait(0.13)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1759652180"
- wait(0.13)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1759652810"
- wait(0.13)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1759652180"
- wait(0.13)
- end
- end,o98)
- end))
- o100.Name = "Icytea poking rastamypasta"
- o100.Parent = o71
- o100.BrickColor = BrickColor.new("Bright green")
- o100.Transparency = 1
- o100.Position = Vector3.new(-79.8850021, 6.07499981, -39.0800018)
- o100.Rotation = Vector3.new(0, -90, 0)
- o100.Anchored = true
- o100.FormFactor = Enum.FormFactor.Custom
- o100.Size = Vector3.new(9.83999443, 8.14999962, 0.230000019)
- o100.CFrame = CFrame.new(-79.8850021, 6.07499981, -39.0800018, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o100.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o100.Position = Vector3.new(-79.8850021, 6.07499981, -39.0800018)
- o101.Parent = o100
- o101.Texture = "rbxassetid://2007190376"
- o102.Name = "Decal Changer"
- o102.Parent = o101
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2007190376"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2007190852"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2007191262"
- wait(0.14)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2007190852"
- wait(0.14)
- end
- end,o102)
- end))
- o104.Parent = o100
- o104.C0 = CFrame.new(0.5, -6.5, 22.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
- o104.C1 = CFrame.new(15.0800018, -6.07499981, 0.114997864, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o104.Part0 = o129
- o104.Part1 = o100
- o105.Name = "Mocking Spongebob Gif"
- o105.Parent = o71
- o105.BrickColor = BrickColor.new("Bright green")
- o105.Transparency = 1
- o105.Position = Vector3.new(-79.8850021, 4.74499989, -30.8100014)
- o105.Rotation = Vector3.new(0, -90, 0)
- o105.Anchored = true
- o105.FormFactor = Enum.FormFactor.Custom
- o105.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o105.CFrame = CFrame.new(-79.8850021, 4.74499989, -30.8100014, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o105.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o105.Position = Vector3.new(-79.8850021, 4.74499989, -30.8100014)
- o106.Parent = o105
- o106.Texture = "rbxassetid://2003062528"
- o107.Name = "Decal Changer"
- o107.Parent = o106
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003061798"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003062528"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003063389"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003064852"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003063389"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003062528"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003061798"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003061798"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003062528"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003063389"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003064852"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003063389"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003062528"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003061798"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003061798"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003062528"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003063389"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003064852"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003063389"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003062528"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003061798"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003065489"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003066668"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003067131"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003066668"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003065489"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003065489"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003066668"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003067131"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003066668"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003065489"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003065489"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003066668"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003067131"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003066668"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2003065489"
- wait(0.10)
- end
- end,o107)
- end))
- o109.Parent = o105
- o109.C0 = CFrame.new(0.5, -6.5, 22.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
- o109.C1 = CFrame.new(6.81000137, -4.74499989, 0.114997864, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o109.Part0 = o129
- o109.Part1 = o105
- o110.Name = "No one around to oof"
- o110.Parent = o71
- o110.BrickColor = BrickColor.new("Bright green")
- o110.Transparency = 1
- o110.Position = Vector3.new(-25.0160255, 6.7450099, -28.1021652)
- o110.Rotation = Vector3.new(0, 90, 0)
- o110.Anchored = true
- o110.FormFactor = Enum.FormFactor.Custom
- o110.Size = Vector3.new(7.25, 5.49000025, 0.230000019)
- o110.CFrame = CFrame.new(-25.0160255, 6.7450099, -28.1021652, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o110.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o110.Position = Vector3.new(-25.0160255, 6.7450099, -28.1021652)
- o111.Parent = o110
- o111.Texture = "rbxassetid://2428016280"
- o112.Name = "Decal Changer"
- o112.Parent = o111
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428016280"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428016995"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428017388"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428017863"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428017388"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2428016995"
- wait(0.12)
- end
- end,o112)
- end))
- o113.Name = "Credit to rastamypasta"
- o113.Parent = o110
- o113.BrickColor = BrickColor.new("Bright green")
- o113.Transparency = 1
- o113.Position = Vector3.new(-25.0460262, 6.55501986, -28.1221619)
- o113.Rotation = Vector3.new(0, 90, 0)
- o113.Anchored = true
- o113.FormFactor = Enum.FormFactor.Custom
- o113.Size = Vector3.new(0.190000549, 0.0500000007, 0.230000019)
- o113.CFrame = CFrame.new(-25.0460262, 6.55501986, -28.1221619, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o113.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o113.Position = Vector3.new(-25.0460262, 6.55501986, -28.1221619)
- o115.Name = "Omae Wa Mou Shindeiru GIF"
- o115.Parent = o71
- o115.BrickColor = BrickColor.new("Bright green")
- o115.Transparency = 1
- o115.Position = Vector3.new(-25.0249996, 5.88499975, -57.0550003)
- o115.Rotation = Vector3.new(0, 90, 0)
- o115.Anchored = true
- o115.FormFactor = Enum.FormFactor.Custom
- o115.Size = Vector3.new(10.1099997, 7.7699995, 0.0500000007)
- o115.CFrame = CFrame.new(-25.0249996, 5.88499975, -57.0550003, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o115.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o115.Position = Vector3.new(-25.0249996, 5.88499975, -57.0550003)
- o116.Parent = o115
- o116.Texture = "rbxassetid://1749088588"
- o117.Name = "Decal Changer"
- o117.Parent = o116
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749085019" --second texture
- wait(0.20) --wait 1 second, you can change this and make it different for every one
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749085436"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749085814"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749086521"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749086925" --Insert decal's first texture
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749087288" --second texture
- wait(0.20) --wait 1 second, you can change this and make it different for every one
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088060"
- wait(0.20)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1749088588"
- wait(0.20)
- end
- end,o117)
- end))
- o119.Parent = o71
- o119.Material = Enum.Material.Brick
- o119.BrickColor = BrickColor.new("Burgundy")
- o119.Position = Vector3.new(-53, 6.5, -69.5)
- o119.Anchored = true
- o119.Size = Vector3.new(56, 13, 1)
- o119.CFrame = CFrame.new(-53, 6.5, -69.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o119.BottomSurface = Enum.SurfaceType.Smooth
- o119.TopSurface = Enum.SurfaceType.Smooth
- o119.Color = Color3.new(0.533333, 0.243137, 0.243137)
- o119.Position = Vector3.new(-53, 6.5, -69.5)
- o120.Parent = o119
- o120.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o120.C1 = CFrame.new(-203, -6.5, 325.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o120.Part1 = o119
- o121.Parent = o119
- o121.C0 = CFrame.new(-5.54500008, -3.88499975, 0.0250000004, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o121.C1 = CFrame.new(18, -6.5, 0.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o121.Part0 = o82
- o121.Part1 = o119
- o122.Parent = o119
- o122.C0 = CFrame.new(-3.40499997, -4.7149992, 0.11500001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o122.C1 = CFrame.new(1, -6.5, 0.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o122.Part0 = o91
- o122.Part1 = o119
- o123.Parent = o71
- o123.Material = Enum.Material.Brick
- o123.BrickColor = BrickColor.new("Burgundy")
- o123.Position = Vector3.new(-24.5, 6.5, -47)
- o123.Anchored = true
- o123.Size = Vector3.new(1, 13, 46)
- o123.CFrame = CFrame.new(-24.5, 6.5, -47, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o123.BottomSurface = Enum.SurfaceType.Smooth
- o123.TopSurface = Enum.SurfaceType.Smooth
- o123.Color = Color3.new(0.533333, 0.243137, 0.243137)
- o123.Position = Vector3.new(-24.5, 6.5, -47)
- o124.Parent = o123
- o124.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o124.C1 = CFrame.new(-231.5, -6.5, 303, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o124.Part1 = o123
- o125.Parent = o123
- o125.C0 = CFrame.new(-3.19000006, -2.74500012, 0.11500001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o125.C1 = CFrame.new(-0.5, -2.50000024, 3, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o125.Part0 = o96
- o125.Part1 = o123
- o126.Parent = o123
- o126.C0 = CFrame.new(-5.05499983, -3.88499975, 0.0250000004, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o126.C1 = CFrame.new(-0.5, -4.5, -5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o126.Part0 = o115
- o126.Part1 = o123
- o127.Parent = o123
- o127.C0 = CFrame.new(-3.19000006, -2.74500012, 0.11500001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o127.C1 = CFrame.new(-0.5, -2.5, 11, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o127.Part0 = o87
- o127.Part1 = o123
- o128.Parent = o123
- o128.C0 = CFrame.new(28, -6.5, 0.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
- o128.C1 = CFrame.new(-0.5, -6.5, -22, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o128.Part0 = o119
- o128.Part1 = o123
- o129.Parent = o71
- o129.Material = Enum.Material.Brick
- o129.BrickColor = BrickColor.new("Burgundy")
- o129.Position = Vector3.new(-80.5, 6.5, -46.5)
- o129.Anchored = true
- o129.Size = Vector3.new(1, 13, 45)
- o129.CFrame = CFrame.new(-80.5, 6.5, -46.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o129.BottomSurface = Enum.SurfaceType.Smooth
- o129.TopSurface = Enum.SurfaceType.Smooth
- o129.Color = Color3.new(0.533333, 0.243137, 0.243137)
- o129.Position = Vector3.new(-80.5, 6.5, -46.5)
- o130.Parent = o129
- o130.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o130.C1 = CFrame.new(-175.5, -6.5, 302.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o130.Part1 = o129
- o131.Parent = o129
- o131.C0 = CFrame.new(-28, -6.5, 0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o131.C1 = CFrame.new(-0.5, -6.5, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o131.Part0 = o119
- o131.Part1 = o129
- o132.Parent = o71
- o132.Material = Enum.Material.Brick
- o132.BrickColor = BrickColor.new("Burgundy")
- o132.Position = Vector3.new(-69.5, 6.5, -24.5)
- o132.Anchored = true
- o132.Size = Vector3.new(21, 13, 1)
- o132.CFrame = CFrame.new(-69.5, 6.5, -24.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o132.BottomSurface = Enum.SurfaceType.Smooth
- o132.TopSurface = Enum.SurfaceType.Smooth
- o132.Color = Color3.new(0.533333, 0.243137, 0.243137)
- o132.Position = Vector3.new(-69.5, 6.5, -24.5)
- o133.Parent = o132
- o133.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o133.C1 = CFrame.new(-186.5, -6.5, 280.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o133.Part1 = o132
- o134.Parent = o132
- o134.C0 = CFrame.new(0.5, -6.5, 22.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
- o134.C1 = CFrame.new(-10.5, -6.5, 0.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o134.Part0 = o129
- o134.Part1 = o132
- o135.Parent = o71
- o135.Material = Enum.Material.Brick
- o135.BrickColor = BrickColor.new("Burgundy")
- o135.Position = Vector3.new(-35.5, 6.5, -24.5)
- o135.Anchored = true
- o135.Size = Vector3.new(21, 13, 1)
- o135.CFrame = CFrame.new(-35.5, 6.5, -24.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o135.BottomSurface = Enum.SurfaceType.Smooth
- o135.TopSurface = Enum.SurfaceType.Smooth
- o135.Color = Color3.new(0.533333, 0.243137, 0.243137)
- o135.Position = Vector3.new(-35.5, 6.5, -24.5)
- o136.Parent = o135
- o136.C0 = CFrame.new(-0.5, -6.5, -23, -0, 0, -1, 0, 1, 0, 1, 0, -0)
- o136.C1 = CFrame.new(10.5, -6.5, -45.5, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o136.Part0 = o123
- o136.Part1 = o135
- o137.Parent = o135
- o137.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o137.C1 = CFrame.new(-220.5, -6.5, 280.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o137.Part1 = o135
- o138.Parent = o71
- o138.Material = Enum.Material.SmoothPlastic
- o138.BrickColor = BrickColor.new("Really black")
- o138.Position = Vector3.new(-52.5, 6.5, -24.5)
- o138.Anchored = true
- o138.Size = Vector3.new(13, 13, 1)
- o138.CFrame = CFrame.new(-52.5, 6.5, -24.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o138.BottomSurface = Enum.SurfaceType.Smooth
- o138.TopSurface = Enum.SurfaceType.Smooth
- o138.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
- o138.Position = Vector3.new(-52.5, 6.5, -24.5)
- o139.Parent = o138
- o139.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o139.C1 = CFrame.new(-203.5, -6.5, 280.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o139.Part1 = o138
- o140.Parent = o138
- o140.C0 = CFrame.new(10.5, -6.5, 0.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
- o140.C1 = CFrame.new(-6.5, -6.5, 0.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
- o140.Part0 = o132
- o140.Part1 = o138
- o141.Parent = o138
- o141.C0 = CFrame.new(-10.5, -6.5, -0.5, -0, 0, -1, 0, 1, 0, 1, 0, -0)
- o141.C1 = CFrame.new(6.5, -6.5, -0.5, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o141.Part0 = o135
- o141.Part1 = o138
- o142.Parent = o71
- o142.Material = Enum.Material.Brick
- o142.BrickColor = BrickColor.new("Burgundy")
- o142.Position = Vector3.new(-52.5, 13.5, -47)
- o142.Anchored = true
- o142.Size = Vector3.new(57, 1, 46)
- o142.CFrame = CFrame.new(-52.5, 13.5, -47, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o142.BottomSurface = Enum.SurfaceType.Smooth
- o142.TopSurface = Enum.SurfaceType.Smooth
- o142.Color = Color3.new(0.533333, 0.243137, 0.243137)
- o142.Position = Vector3.new(-52.5, 13.5, -47)
- o143.Parent = o142
- o143.C0 = CFrame.new(-10.5, 6.5, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o143.C1 = CFrame.new(6.5, -0.5, 23, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o143.Part0 = o135
- o143.Part1 = o142
- o144.Parent = o142
- o144.C0 = CFrame.new(-6.5, 6.5, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o144.C1 = CFrame.new(-6.5, -0.5, 23, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o144.Part0 = o138
- o144.Part1 = o142
- o145.Parent = o142
- o145.C0 = CFrame.new(-10.5, 6.5, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o145.C1 = CFrame.new(-27.5, -0.5, 23, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o145.Part0 = o132
- o145.Part1 = o142
- o146.Parent = o142
- o146.C0 = CFrame.new(-0.5, 6.5, 23, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o146.C1 = CFrame.new(27.5, -0.5, 23, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o146.Part0 = o123
- o146.Part1 = o142
- o147.Parent = o142
- o147.C0 = CFrame.new(-0.5, 6.5, 22.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o147.C1 = CFrame.new(-28.5, -0.5, 23, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o147.Part0 = o129
- o147.Part1 = o142
- o148.Parent = o142
- o148.C0 = CFrame.new(-28, 6.5, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o148.C1 = CFrame.new(-28.5, -0.5, -22, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o148.Part0 = o119
- o148.Part1 = o142
- o149.Name = "Peter Griffin Injury Gif"
- o149.Parent = o71
- o149.BrickColor = BrickColor.new("Bright green")
- o149.Transparency = 1
- o149.Position = Vector3.new(-66.1699982, 0.0250000004, -54.8849983)
- o149.Rotation = Vector3.new(90, 0, -180)
- o149.Anchored = true
- o149.FormFactor = Enum.FormFactor.Custom
- o149.Size = Vector3.new(8.34000111, 7.7699995, 0.0500000007)
- o149.CFrame = CFrame.new(-66.1699982, 0.0250000004, -54.8849983, -1, 0, 0, 0, 0, -1, 0, -1, 0)
- o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o149.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o149.Position = Vector3.new(-66.1699982, 0.0250000004, -54.8849983)
- o150.Parent = o149
- o150.Texture = "rbxassetid://1746336111"
- o151.Name = "Decal Changer"
- o151.Parent = o150
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746336111" --second texture
- wait(0.16) --wait 1 second, you can change this and make it different for every one
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746336485"
- wait(0.16)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746336895"
- wait(0.16)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746337853"
- wait(0.16)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746338237" --Insert decal's first texture
- wait(0.16)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746338591" --second texture
- wait(0.26) --wait 1 second, you can change this and make it different for every one
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746339834"
- wait(0.26)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1746336485"
- wait(0.40)
- end
- end,o151)
- end))
- o153.Parent = o149
- o153.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o153.C1 = CFrame.new(189.830002, -310.88501, 0.0250000004, 1, 0, 0, 0, -1, 0, 0, 0, -1)
- o153.Part1 = o149
- o154.Name = "SOMEBODY TOUCHA MY SPAGHET! GIF"
- o154.Parent = o71
- o154.BrickColor = BrickColor.new("Bright green")
- o154.Transparency = 1
- o154.Position = Vector3.new(-33.1900024, 0.11500001, -55.7449989)
- o154.Rotation = Vector3.new(90, 0, -180)
- o154.Anchored = true
- o154.FormFactor = Enum.FormFactor.Custom
- o154.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o154.CFrame = CFrame.new(-33.1900024, 0.11500001, -55.7449989, -1, 0, 0, 0, 0, -1, 0, -1, 0)
- o154.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o154.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o154.Position = Vector3.new(-33.1900024, 0.11500001, -55.7449989)
- o155.Parent = o154
- o155.Texture = "http://www.roblox.com/asset/?id=1793495158"
- o156.Name = "Decal Changer"
- o156.Parent = o155
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793478252"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793478778"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793553486"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793554250"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793480287"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793480874"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793481435"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793482023"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793482641"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793484262"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793546536"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793485527"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793486176"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793486720"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793487219"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793487677"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793488146"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793488688"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793489162"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793490409"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793491744"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793492291"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793492757"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793493300"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793493884"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793494589"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793495158"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793495822"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793496786"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1793497417"
- wait(1.00)
- end
- end,o156)
- end))
- o158.Parent = o154
- o158.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o158.C1 = CFrame.new(222.809998, -311.744995, 0.11500001, 1, 0, 0, 0, -1, 0, 0, 0, -1)
- o158.Part1 = o154
- o159.Name = "Smug Spongebob"
- o159.Parent = o71
- o159.BrickColor = BrickColor.new("Bright green")
- o159.Transparency = 1
- o159.Position = Vector3.new(-39.2849998, 0.11500001, -45.2399979)
- o159.Rotation = Vector3.new(90, 0, -180)
- o159.Anchored = true
- o159.FormFactor = Enum.FormFactor.Custom
- o159.Size = Vector3.new(4.56999731, 6.47999716, 0.230000019)
- o159.CFrame = CFrame.new(-39.2849998, 0.11500001, -45.2399979, -1, 0, 0, 0, 0, -1, 0, -1, 0)
- o159.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o159.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o159.Position = Vector3.new(-39.2849998, 0.11500001, -45.2399979)
- o160.Parent = o159
- o160.Texture = "rbxassetid://2100295921"
- o161.Name = "Decal Changer"
- o161.Parent = o160
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100293340"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100293619"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100293874"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100294122"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100294415"
- wait(1.00)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100294739"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100295024"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100295324"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100295641"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=2100295921"
- wait(2.00)
- end
- end,o161)
- end))
- o163.Parent = o159
- o163.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o163.C1 = CFrame.new(216.714996, -301.23999, 0.11500001, 1, 0, 0, 0, -1, 0, 0, 0, -1)
- o163.Part1 = o159
- o164.Name = "Spongegar GIF"
- o164.Parent = o71
- o164.BrickColor = BrickColor.new("Bright green")
- o164.Transparency = 1
- o164.Position = Vector3.new(-79.8850021, 5.74499989, -49.8100014)
- o164.Rotation = Vector3.new(0, -90, 0)
- o164.Anchored = true
- o164.FormFactor = Enum.FormFactor.Custom
- o164.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o164.CFrame = CFrame.new(-79.8850021, 5.74499989, -49.8100014, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- o164.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o164.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o164.Position = Vector3.new(-79.8850021, 5.74499989, -49.8100014)
- o165.Parent = o164
- o165.Texture = "http://www.roblox.com/asset/?id=1788894961"
- o166.Name = "Decal Changer"
- o166.Parent = o165
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788894130"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788894619"
- wait(0.10)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788894961"
- wait(0.13)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788895384"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788895893"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788895384"
- wait(0.12)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1788894961"
- wait(1.00)
- end
- end,o166)
- end))
- o168.Parent = o164
- o168.C0 = CFrame.new(0.5, -6.5, 22.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
- o168.C1 = CFrame.new(25.8100014, -5.74499989, 0.114997864, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o168.Part0 = o129
- o168.Part1 = o164
- o169.Name = "Trash Dove"
- o169.Parent = o71
- o169.BrickColor = BrickColor.new("Bright green")
- o169.Transparency = 1
- o169.Position = Vector3.new(-40.1899986, 2.74500012, -23.8850002)
- o169.Rotation = Vector3.new(-180, 0, -180)
- o169.Anchored = true
- o169.FormFactor = Enum.FormFactor.Custom
- o169.Size = Vector3.new(6.38000011, 5.49000025, 0.230000019)
- o169.CFrame = CFrame.new(-40.1899986, 2.74500012, -23.8850002, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o169.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o169.Position = Vector3.new(-40.1899986, 2.74500012, -23.8850002)
- o170.Parent = o169
- o170.Texture = "rbxassetid://670903067"
- o171.Name = "Decal Changer"
- o171.Parent = o170
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=670903067"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=670907489"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=670908768"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=670910154"
- wait(0.08)
- end
- end,o171)
- end))
- o173.Parent = o169
- o173.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o173.C1 = CFrame.new(215.809998, -2.74500012, -279.88501, 1, 0, 0, 0, 0, 1, 0, -1, 0)
- o173.Part1 = o169
- o174.Parent = o169
- o174.C0 = CFrame.new(-10.5, -6.5, 0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- o174.C1 = CFrame.new(5.81000137, -2.74500012, 0.114999771, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o174.Part0 = o135
- o174.Part1 = o169
- o175.Name = "Mario Bros Dancing Gif"
- o175.Parent = o71
- o176.Name = "Mario Dancing"
- o176.Parent = o175
- o176.BrickColor = BrickColor.new("Bright green")
- o176.Transparency = 1
- o176.Position = Vector3.new(-69.4906158, 2.50000811, -68.6678772)
- o176.Rotation = Vector3.new(-180, 0, -180)
- o176.Anchored = true
- o176.FormFactor = Enum.FormFactor.Custom
- o176.Size = Vector3.new(4.00999928, 4.99999952, 0.230000019)
- o176.CFrame = CFrame.new(-69.4906158, 2.50000811, -68.6678772, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o176.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o176.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o176.Position = Vector3.new(-69.4906158, 2.50000811, -68.6678772)
- o177.Parent = o176
- o177.Texture = "http://www.roblox.com/asset/?id=1912536285"
- o178.Name = "Decal Changer"
- o178.Parent = o177
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912536285"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912536629"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912536926"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912537204"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912537551"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912537204"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912536926"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912536629"
- wait(0.08)
- end
- end,o178)
- end))
- o179.Parent = o176
- o179.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o179.C1 = CFrame.new(186.509384, -2.50000811, -324.667877, 1, 0, 0, 0, 0, 1, 0, -1, 0)
- o179.Part1 = o176
- o180.Name = "Luigi Dancing"
- o180.Parent = o175
- o180.BrickColor = BrickColor.new("Bright green")
- o180.Transparency = 1
- o180.Position = Vector3.new(-65.9206238, 2.54000807, -68.7378922)
- o180.Rotation = Vector3.new(-180, 0, -180)
- o180.Anchored = true
- o180.FormFactor = Enum.FormFactor.Custom
- o180.Size = Vector3.new(3.09000039, 5.07999945, 0.230000019)
- o180.CFrame = CFrame.new(-65.9206238, 2.54000807, -68.7378922, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o180.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o180.Color = Color3.new(0.294118, 0.592157, 0.294118)
- o180.Position = Vector3.new(-65.9206238, 2.54000807, -68.7378922)
- o181.Parent = o180
- o181.Texture = "rbxassetid://1912537880"
- o182.Name = "Decal Changer"
- o182.Parent = o181
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- --put this script inside the decal you want to change
- --to find the decal texture, insert the decal you want on a brick. Look into the brick and click the decal. Scroll Down and it says texture.
- --copy the url into the "insert texture here" spot
- while true do --Loop
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912537880"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912538148"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912538419"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912538745"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912539062"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912539354"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912539062"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912538745"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912538419"
- wait(0.08)
- script.Parent.Texture = "http://www.roblox.com/asset/?id=1912538148"
- wait(0.08)
- end
- end,o182)
- end))
- o183.Parent = o180
- o183.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o183.C1 = CFrame.new(190.079376, -2.54000807, -324.737885, 1, 0, 0, 0, 0, 1, 0, -1, 0)
- o183.Part1 = o180
- o185.Name = "Sign"
- o185.Parent = mas
- o186.Parent = o185
- o186.Material = Enum.Material.WoodPlanks
- o186.BrickColor = BrickColor.new("Reddish brown")
- o186.Position = Vector3.new(-57.787384, 2.40001869, -21.894104)
- o186.Rotation = Vector3.new(-180, 10, -180)
- o186.Anchored = true
- o186.Size = Vector3.new(0.400000006, 4.80000019, 0.200000003)
- o186.CFrame = CFrame.new(-57.787384, 2.40001869, -21.894104, -0.984808147, 0, 0.173646942, 0, 1, 0, -0.173646942, 0, -0.984808147)
- o186.Color = Color3.new(0.411765, 0.25098, 0.156863)
- o186.Position = Vector3.new(-57.787384, 2.40001869, -21.894104)
- o187.Name = "Part-to-Part Strong Joint"
- o187.Parent = o186
- o187.C0 = CFrame.new(0.200000003, -2.4000001, -0.100000001, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o187.C1 = CFrame.new(0.199996948, -3.5, 0.100006104, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o187.Part0 = o186
- o187.Part1 = o190
- o188.Name = "Part Terrain Joint"
- o188.Parent = o186
- o188.Part1 = o186
- o189.Parent = o186
- o189.C0 = CFrame.new(-256, 10, 256, -1, 0, 0, 0, 0, 1, 0, 1, 0)
- o189.C1 = CFrame.new(146.945892, -2.40001869, -308.091278, 0.984808147, -0.173646942, 0, 0, 0, 1, -0.173646942, -0.984808147, 0)
- o189.Part1 = o186
- o190.Parent = o185
- o190.Material = Enum.Material.WoodPlanks
- o190.BrickColor = BrickColor.new("Reddish brown")
- o190.Position = Vector3.new(-57.8221817, 3.5000186, -21.6970234)
- o190.Rotation = Vector3.new(-180, 10, -180)
- o190.Anchored = true
- o190.Size = Vector3.new(4, 2.20000005, 0.200000003)
- o190.CFrame = CFrame.new(-57.8221817, 3.5000186, -21.6970234, -0.984808147, 0, 0.173646957, 0, 1, 0, -0.173646957, 0, -0.984808147)
- o190.Color = Color3.new(0.411765, 0.25098, 0.156863)
- o190.Position = Vector3.new(-57.8221817, 3.5000186, -21.6970234)
- o191.Name = "Part-to-Text Strong Joint"
- o191.Parent = o190
- o191.C0 = CFrame.new(2, -1.10000002, -0.100000001, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- o191.C1 = CFrame.new(2.01499939, -1.10499954, 0.100006104, -1.00000012, 0, -5.96046448e-08, 0, 1, 0, 5.96046448e-08, 0, -1.00000012)
- o191.Part0 = o190
- o191.Part1 = o192
- o192.Name = "Text"
- o192.Parent = o185
- o192.Material = Enum.Material.WoodPlanks
- o192.BrickColor = BrickColor.new("Reddish brown")
- o192.Position = Vector3.new(-57.8421402, 3.505018, -21.4974518)
- o192.Rotation = Vector3.new(-180, 10, -180)
- o192.Anchored = true
- o192.FormFactor = Enum.FormFactor.Custom
- o192.Size = Vector3.new(3.97000051, 2.21000004, 0.200000003)
- o192.CFrame = CFrame.new(-57.8421402, 3.505018, -21.4974518, -0.984808028, 0, 0.173647001, 0, 1, 0, -0.173647001, 0, -0.984808028)
- o192.BackSurface = Enum.SurfaceType.SmoothNoOutlines
- o192.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
- o192.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
- o192.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
- o192.RightSurface = Enum.SurfaceType.SmoothNoOutlines
- o192.TopSurface = Enum.SurfaceType.SmoothNoOutlines
- o192.Color = Color3.new(0.411765, 0.25098, 0.156863)
- o192.Position = Vector3.new(-57.8421402, 3.505018, -21.4974518)
- o193.Parent = o192
- o193.CanvasSize = Vector2.new(200, 100)
- o194.Parent = o193
- o194.Size = UDim2.new(1,0,1,0)
- o194.Text = "why does this exist"
- o194.Active = true
- o194.BackgroundColor3 = Color3.new(1, 1, 1)
- o194.BackgroundTransparency = 1
- o194.Font = Enum.Font.ArialBold
- o194.FontSize = Enum.FontSize.Size12
- o194.TextColor3 = Color3.new(1, 1, 1)
- o194.TextScaled = true
- o194.TextStrokeColor3 = Color3.new(0, 0.0117647, 0)
- o194.TextStrokeTransparency = 0
- o194.TextWrapped = true
- mas.Parent = workspace
- mas:MakeJoints()
- local mas1 = mas:GetChildren()
- for i=1,#mas1 do
- mas1[i].Parent = workspace
- ypcall(function() mas1[i]:MakeJoints() end)
- end
- mas:Destroy()
- for i=1,#cors do
- coroutine.resume(cors[i])
- end
Advertisement
Add Comment
Please, Sign In to add comment