Advertisement
Hamburghini

Dedoxed GUI

Dec 9th, 2018
1,669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.23 KB | None | 0 0
  1. local gui = Instance.new("ScreenGui")
  2. gui.Name = "DedoxedGUI"
  3. gui.Parent = game.CoreGui
  4.  
  5. local main = Instance.new("Frame")
  6. main.Name = "Main"
  7. main.Parent = gui
  8. main.Active = true
  9. main.Selectable = true
  10. main.Draggable = true
  11. main.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  12. main.BorderSizePixel = 0
  13. main.Position = UDim2.new(0.199, 0, 0.262, 0)
  14. main.Size = UDim2.new(0, 151, 0, 191)
  15.  
  16. local downside = Instance.new("Frame")
  17. downside.Name = "DownSide"
  18. downside.Parent = main
  19. downside.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  20. downside.BorderSizePixel = 0
  21. downside.Position = UDim2.new(0, 0, 0.168, 0)
  22. downside.Size = UDim2.new(0, 151, 0, 6)
  23.  
  24. local upside = Instance.new("Frame")
  25. upside.Name = "UpSide"
  26. upside.Parent = main
  27. upside.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  28. upside.BorderSizePixel = 0
  29. upside.Position = UDim2.new(0, 0, 0, 0)
  30. upside.Size = UDim2.new(0, 151, 0, 6)
  31.  
  32. local esp = Instance.new("TextButton")
  33. esp.Name = "ESP"
  34. esp.Parent = main
  35. esp.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  36. esp.BorderSizePixel = 0
  37. esp.Position = UDim2.new(0.066, 0, 0.254, 0)
  38. esp.Size = UDim2.new(0, 131, 0, 50)
  39. esp.Text = "ESP"
  40. esp.Font = Enum.Font.Code
  41. esp.TextColor3 = Color3.fromRGB(255, 0, 0)
  42. esp.TextSize = 24
  43. esp.TextStrokeTransparency = 0.5
  44. esp.TextWrapped = true
  45. esp.MouseButton1Down:connect(function()
  46.     for _,p in pairs(game:GetService'Players':GetPlayers()) do
  47.         local char = p.Character
  48.         if char then
  49.             for _,v in pairs(char:GetChildren()) do
  50.                 if v:IsA("BasePart") then
  51.                     local box = Instance.new("BoxHandleAdornment", game:GetService("Players").LocalPlayer.PlayerGui)
  52.                     box.Adornee = v
  53.                     box.Size = v.Size
  54.                     box.AlwaysOnTop = true
  55.                     box.ZIndex = 1
  56.                     box.Transparency = 0.25
  57.                     if char.Shirt.ShirtTemplate == "rbxassetid://1265541792" then
  58.                         box.Color3 = Color3.fromRGB(255, 0, 0)
  59.                     else
  60.                         box.Color3 = Color3.fromRGB(0, 255, 255)
  61.                     end
  62.                 end
  63.             end
  64.         end
  65.     end
  66. end)
  67.  
  68. local rf = Instance.new("TextButton")
  69. rf.Name = "RemoveFog"
  70. rf.Parent = main
  71. rf.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  72. rf.BorderSizePixel = 0
  73. rf.Position = UDim2.new(0.066, 0, 0.582, 0)
  74. rf.Size = UDim2.new(0, 131, 0, 50)
  75. rf.Text = "Remove Fog"
  76. rf.Font = Enum.Font.Code
  77. rf.TextColor3 = Color3.fromRGB(255, 0, 0)
  78. rf.TextSize = 24
  79. rf.TextStrokeTransparency = 0.5
  80. rf.TextWrapped = true
  81. rf.MouseButton1Down:connect(function()
  82.     game.Lighting.FogEnd = 10000
  83. end)
  84.  
  85. local dedoxed = Instance.new("TextLabel")
  86. dedoxed.Name = "Dedoxed"
  87. dedoxed.Parent = main
  88. dedoxed.BackgroundTransparency = 1
  89. dedoxed.Position = UDim2.new(0, 0, 0.034, 0)
  90. dedoxed.Size = UDim2.new(0, 151, 0, 26)
  91. dedoxed.Text = "Dedoxed"
  92. dedoxed.Font = Enum.Font.Code
  93. dedoxed.TextColor3 = Color3.fromRGB(255, 0, 0)
  94. dedoxed.TextScaled = true
  95. dedoxed.TextStrokeTransparency = 0.5
  96. dedoxed.TextWrapped = true
  97.  
  98. local discord = Instance.new("TextLabel")
  99. discord.Name = "Credits"
  100. discord.Parent = main
  101. discord.BackgroundTransparency = 1
  102. discord.Position = UDim2.new(0, 0, 0.861, 0)
  103. discord.Size = UDim2.new(0, 151, 0, 26)
  104. discord.Text = "Hamburghini#6590"
  105. discord.Font = Enum.Font.Code
  106. discord.TextColor3 = Color3.fromRGB(255, 0, 0)
  107. discord.TextScaled = true
  108. discord.TextStrokeTransparency = 0.5
  109. discord.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement