Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local gui = Instance.new("ScreenGui")
- local frame = Instance.new("Frame")
- local uiCorner = Instance.new("UICorner")
- local title = Instance.new("TextLabel")
- local closeButton = Instance.new("TextButton")
- gui.Name = "c00lGuiRebornV2"
- gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- frame.Parent = gui
- frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- frame.Position = UDim2.new(0.3, 0, 0.2, 0)
- frame.Size = UDim2.new(0, 600, 0, 400)
- frame.Active = true
- frame.Draggable = true
- frame.BorderSizePixel = 3
- frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
- uiCorner.CornerRadius = UDim.new(0, 12)
- uiCorner.Parent = frame
- title.Parent = frame
- title.Text = "c00lGui Reborn V2"
- title.Size = UDim2.new(1, 0, 0, 30)
- title.BackgroundTransparency = 1
- title.TextColor3 = Color3.fromRGB(255, 0, 0)
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 24
- closeButton.Parent = frame
- closeButton.Text = "X"
- closeButton.Position = UDim2.new(1, -30, 0, 0)
- closeButton.Size = UDim2.new(0, 30, 0, 30)
- closeButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- closeButton.BorderSizePixel = 2
- closeButton.BorderColor3 = Color3.fromRGB(255, 0, 0)
- closeButton.TextColor3 = Color3.fromRGB(255, 0, 0)
- closeButton.MouseButton1Click:Connect(function()
- gui:Destroy()
- end)
- local function makeButton(name, y, func)
- local btn = Instance.new("TextButton")
- btn.Parent = frame
- btn.Text = name
- btn.Position = UDim2.new(0, 10, 0, y)
- btn.Size = UDim2.new(1, -20, 0, 40)
- btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- btn.BorderColor3 = Color3.fromRGB(255, 0, 0)
- btn.BorderSizePixel = 2
- btn.TextColor3 = Color3.fromRGB(255, 0, 0)
- btn.Font = Enum.Font.SourceSans
- btn.TextSize = 20
- btn.MouseButton1Click:Connect(func)
- end
- makeButton("Speed Hack", 40, function()
- local speedBox = Instance.new("TextBox")
- speedBox.Parent = gui
- speedBox.PlaceholderText = "Type your ID/speed no. here!"
- speedBox.Size = UDim2.new(0, 200, 0, 40)
- speedBox.Position = UDim2.new(0.5, -100, 0.5, -20)
- speedBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- speedBox.BorderColor3 = Color3.fromRGB(255, 0, 0)
- speedBox.BorderSizePixel = 2
- speedBox.TextColor3 = Color3.fromRGB(255, 0, 0)
- speedBox.ClearTextOnFocus = true
- speedBox.FocusLost:Connect(function()
- local num = tonumber(speedBox.Text)
- if num then
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = num
- end
- speedBox:Destroy()
- end)
- end)
- makeButton("Skybox Hack", 90, function()
- local box = Instance.new("TextBox")
- box.Parent = gui
- box.PlaceholderText = "Type your Skybox ID here!"
- box.Size = UDim2.new(0, 200, 0, 40)
- box.Position = UDim2.new(0.5, -100, 0.5, -20)
- box.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- box.BorderColor3 = Color3.fromRGB(255, 0, 0)
- box.BorderSizePixel = 2
- box.TextColor3 = Color3.fromRGB(255, 0, 0)
- box.FocusLost:Connect(function()
- local id = box.Text
- for _, v in pairs(game.Lighting:GetChildren()) do
- if v:IsA("Sky") then v:Destroy() end
- end
- local sky = Instance.new("Sky", game.Lighting)
- for _, side in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do
- sky["Skybox" .. side] = "http://www.roblox.com/asset/?id=" .. id
- end
- box:Destroy()
- end)
- end)
- makeButton("Relaxed Scene", 140, function()
- local s = Instance.new("Sound", game.Workspace)
- s.SoundId = "rbxassetid://1848354536"
- s.Volume = 5
- s:Play()
- end)
- makeButton("Audio Player", 190, function()
- local input = Instance.new("TextBox", gui)
- input.PlaceholderText = "Type your ID here!"
- input.Size = UDim2.new(0, 200, 0, 40)
- input.Position = UDim2.new(0.5, -100, 0.5, -20)
- input.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- input.BorderColor3 = Color3.fromRGB(255, 0, 0)
- input.BorderSizePixel = 2
- input.TextColor3 = Color3.fromRGB(255, 0, 0)
- input.FocusLost:Connect(function()
- local sound = Instance.new("Sound", game.Workspace)
- sound.SoundId = "rbxassetid://" .. input.Text
- sound.Volume = 5
- sound:Play()
- input:Destroy()
- end)
- end)
- makeButton("Invisibility", 240, function()
- for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
- v.Transparency = 1
- if v:FindFirstChild("face") then v.face:Destroy() end
- end
- end
- end)
- makeButton("Coolkid Madness V2", 290, function()
- for _, part in pairs(workspace:GetDescendants()) do
- if part:IsA("BasePart") then
- part.Color = Color3.fromRGB(math.random(0,255), math.random(0,255), math.random(0,255))
- part.Size = Vector3.new(math.random(1,10), math.random(1,10), math.random(1,10))
- end
- end
- end)
- makeButton("Hyderoxide", 340, function()
- local owner = "Upbolt"
- local branch = "revision"
- local function webImport(file)
- return loadstring(game:HttpGetAsync(("https://raw.githubusercontent.com/%s/Hydroxide/%s/%s.lua"):format(owner, branch, file)), file .. '.lua')()
- end
- webImport("init")
- webImport("ui/main")
- end)
- makeButton("Unanchor All Parts", 390, function()
- for _, part in pairs(workspace:GetDescendants()) do
- if part:IsA("BasePart") then
- part.Anchored = false
- end
- end
- end)
- makeButton("C00lkid Skybox", 440, function()
- for _, v in pairs(game.Lighting:GetChildren()) do
- if v:IsA("Sky") then v:Destroy() end
- end
- local sky = Instance.new("Sky", game.Lighting)
- local id = "120471627025067"
- for _, side in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do
- sky["Skybox" .. side] = "http://www.roblox.com/asset/?id=" .. id
- end
- local sound = Instance.new("Sound", game.Workspace)
- sound.SoundId = "rbxassetid://9126799246"
- sound.Volume = 10
- sound.Looped = false
- sound:Play()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement