Advertisement
Rumanthan

5519565135

Apr 13th, 2025
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.02 KB | None | 0 0
  1. local gui = Instance.new("ScreenGui")
  2. local frame = Instance.new("Frame")
  3. local uiCorner = Instance.new("UICorner")
  4. local title = Instance.new("TextLabel")
  5. local closeButton = Instance.new("TextButton")
  6.  
  7. gui.Name = "c00lGuiRebornV2"
  8. gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9. gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. frame.Parent = gui
  12. frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  13. frame.Position = UDim2.new(0.3, 0, 0.2, 0)
  14. frame.Size = UDim2.new(0, 600, 0, 400)
  15. frame.Active = true
  16. frame.Draggable = true
  17. frame.BorderSizePixel = 3
  18. frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
  19.  
  20. uiCorner.CornerRadius = UDim.new(0, 12)
  21. uiCorner.Parent = frame
  22.  
  23. title.Parent = frame
  24. title.Text = "c00lGui Reborn V2"
  25. title.Size = UDim2.new(1, 0, 0, 30)
  26. title.BackgroundTransparency = 1
  27. title.TextColor3 = Color3.fromRGB(255, 0, 0)
  28. title.Font = Enum.Font.SourceSansBold
  29. title.TextSize = 24
  30.  
  31. closeButton.Parent = frame
  32. closeButton.Text = "X"
  33. closeButton.Position = UDim2.new(1, -30, 0, 0)
  34. closeButton.Size = UDim2.new(0, 30, 0, 30)
  35. closeButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  36. closeButton.BorderSizePixel = 2
  37. closeButton.BorderColor3 = Color3.fromRGB(255, 0, 0)
  38. closeButton.TextColor3 = Color3.fromRGB(255, 0, 0)
  39. closeButton.MouseButton1Click:Connect(function()
  40. gui:Destroy()
  41. end)
  42.  
  43. local function makeButton(name, y, func)
  44. local btn = Instance.new("TextButton")
  45. btn.Parent = frame
  46. btn.Text = name
  47. btn.Position = UDim2.new(0, 10, 0, y)
  48. btn.Size = UDim2.new(1, -20, 0, 40)
  49. btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  50. btn.BorderColor3 = Color3.fromRGB(255, 0, 0)
  51. btn.BorderSizePixel = 2
  52. btn.TextColor3 = Color3.fromRGB(255, 0, 0)
  53. btn.Font = Enum.Font.SourceSans
  54. btn.TextSize = 20
  55. btn.MouseButton1Click:Connect(func)
  56. end
  57.  
  58. makeButton("Speed Hack", 40, function()
  59. local speedBox = Instance.new("TextBox")
  60. speedBox.Parent = gui
  61. speedBox.PlaceholderText = "Type your ID/speed no. here!"
  62. speedBox.Size = UDim2.new(0, 200, 0, 40)
  63. speedBox.Position = UDim2.new(0.5, -100, 0.5, -20)
  64. speedBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  65. speedBox.BorderColor3 = Color3.fromRGB(255, 0, 0)
  66. speedBox.BorderSizePixel = 2
  67. speedBox.TextColor3 = Color3.fromRGB(255, 0, 0)
  68. speedBox.ClearTextOnFocus = true
  69. speedBox.FocusLost:Connect(function()
  70. local num = tonumber(speedBox.Text)
  71. if num then
  72. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = num
  73. end
  74. speedBox:Destroy()
  75. end)
  76. end)
  77.  
  78. makeButton("Skybox Hack", 90, function()
  79. local box = Instance.new("TextBox")
  80. box.Parent = gui
  81. box.PlaceholderText = "Type your Skybox ID here!"
  82. box.Size = UDim2.new(0, 200, 0, 40)
  83. box.Position = UDim2.new(0.5, -100, 0.5, -20)
  84. box.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  85. box.BorderColor3 = Color3.fromRGB(255, 0, 0)
  86. box.BorderSizePixel = 2
  87. box.TextColor3 = Color3.fromRGB(255, 0, 0)
  88. box.FocusLost:Connect(function()
  89. local id = box.Text
  90. for _, v in pairs(game.Lighting:GetChildren()) do
  91. if v:IsA("Sky") then v:Destroy() end
  92. end
  93. local sky = Instance.new("Sky", game.Lighting)
  94. for _, side in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do
  95. sky["Skybox" .. side] = "http://www.roblox.com/asset/?id=" .. id
  96. end
  97. box:Destroy()
  98. end)
  99. end)
  100.  
  101. makeButton("Relaxed Scene", 140, function()
  102. local s = Instance.new("Sound", game.Workspace)
  103. s.SoundId = "rbxassetid://1848354536"
  104. s.Volume = 5
  105. s:Play()
  106. end)
  107.  
  108. makeButton("Audio Player", 190, function()
  109. local input = Instance.new("TextBox", gui)
  110. input.PlaceholderText = "Type your ID here!"
  111. input.Size = UDim2.new(0, 200, 0, 40)
  112. input.Position = UDim2.new(0.5, -100, 0.5, -20)
  113. input.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  114. input.BorderColor3 = Color3.fromRGB(255, 0, 0)
  115. input.BorderSizePixel = 2
  116. input.TextColor3 = Color3.fromRGB(255, 0, 0)
  117. input.FocusLost:Connect(function()
  118. local sound = Instance.new("Sound", game.Workspace)
  119. sound.SoundId = "rbxassetid://" .. input.Text
  120. sound.Volume = 5
  121. sound:Play()
  122. input:Destroy()
  123. end)
  124. end)
  125.  
  126. makeButton("Invisibility", 240, function()
  127. for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  128. if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
  129. v.Transparency = 1
  130. if v:FindFirstChild("face") then v.face:Destroy() end
  131. end
  132. end
  133. end)
  134.  
  135. makeButton("Coolkid Madness V2", 290, function()
  136. for _, part in pairs(workspace:GetDescendants()) do
  137. if part:IsA("BasePart") then
  138. part.Color = Color3.fromRGB(math.random(0,255), math.random(0,255), math.random(0,255))
  139. part.Size = Vector3.new(math.random(1,10), math.random(1,10), math.random(1,10))
  140. end
  141. end
  142. end)
  143.  
  144. makeButton("Hyderoxide", 340, function()
  145. local owner = "Upbolt"
  146. local branch = "revision"
  147. local function webImport(file)
  148. return loadstring(game:HttpGetAsync(("https://raw.githubusercontent.com/%s/Hydroxide/%s/%s.lua"):format(owner, branch, file)), file .. '.lua')()
  149. end
  150. webImport("init")
  151. webImport("ui/main")
  152. end)
  153.  
  154. makeButton("Unanchor All Parts", 390, function()
  155. for _, part in pairs(workspace:GetDescendants()) do
  156. if part:IsA("BasePart") then
  157. part.Anchored = false
  158. end
  159. end
  160. end)
  161.  
  162. makeButton("C00lkid Skybox", 440, function()
  163. for _, v in pairs(game.Lighting:GetChildren()) do
  164. if v:IsA("Sky") then v:Destroy() end
  165. end
  166. local sky = Instance.new("Sky", game.Lighting)
  167. local id = "120471627025067"
  168. for _, side in pairs({"Bk", "Dn", "Ft", "Lf", "Rt", "Up"}) do
  169. sky["Skybox" .. side] = "http://www.roblox.com/asset/?id=" .. id
  170. end
  171.  
  172. local sound = Instance.new("Sound", game.Workspace)
  173. sound.SoundId = "rbxassetid://9126799246"
  174. sound.Volume = 10
  175. sound.Looped = false
  176. sound:Play()
  177. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement