Advertisement
goku13l

cdk Haze of Misery script

May 23rd, 2023 (edited)
2,190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. Loadstring(game:HttpGet("https://raw.githubusercontent.com/scriptsholder/roblox/main/simple"))()
  2.  
  3. -- Create the toggle button
  4. local toggleButton = Instance.new("TextButton")
  5. toggleButton.Size = UDim2.new(0, 100, 0, 30)
  6. toggleButton.Position = UDim2.new(0, 10, 0, 10)
  7. toggleButton.Text = "Toggle Console Log"
  8. toggleButton.Parent = game.Players.LocalPlayer.PlayerGui
  9.  
  10. local consoleEnabled = false -- Variable to track the console log state
  11.  
  12. -- Function to toggle the console log visibility
  13. local function toggleConsoleLog()
  14.     consoleEnabled = not consoleEnabled
  15.     if consoleEnabled then
  16.         game:GetService("CoreGui").RobloxGui.Chat.LocalCoreChat.Visible = true
  17.     else
  18.         game:GetService("CoreGui").RobloxGui.Chat.LocalCoreChat.Visible = false
  19.     end
  20. end
  21.  
  22. -- Connect the toggle button to the toggleConsoleLog function
  23. toggleButton.MouseButton1Click:Connect(toggleConsoleLog)
  24.  
  25.  
  26. -- you need to use consle to see what you have to kill
  27.  
  28. -- f9 or /console in chat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement