Advertisement
proHDscirpts

Untitled

Jun 3rd, 2022
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local label = Instance.new("TextLabel")
  6. local scripts = Instance.new("TextButton")
  7. local information = Instance.new("TextButton")
  8. local supportedgames = Instance.new("TextButton")
  9. local credits = Instance.new("TextButton")
  10. local X = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. main.Name = "main"
  18. main.Parent = ScreenGui
  19. main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  20. main.BorderColor3 = Color3.fromRGB(25, 25, 25)
  21. main.Position = UDim2.new(0.582059145, 0, 0.457583547, 0)
  22. main.Size = UDim2.new(0, 365, 0, 168)
  23. main.Active = true
  24. main.Draggable = true
  25.  
  26. label.Name = "label"
  27. label.Parent = main
  28. label.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  29. label.BorderColor3 = Color3.fromRGB(30, 30, 30)
  30. label.Position = UDim2.new(0.026162846, 0, 0.0773809552, 0)
  31. label.Size = UDim2.new(0, 348, 0, 54)
  32. label.Font = Enum.Font.Code
  33. label.Text = "Home Page Gui| made by bøwl#9999"
  34. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. label.TextSize = 20.000
  36.  
  37. scripts.Name = "scripts"
  38. scripts.Parent = main
  39. scripts.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  40. scripts.BorderColor3 = Color3.fromRGB(255, 255, 255)
  41. scripts.Position = UDim2.new(-0.00123446994, 0, 0.464285702, 0)
  42. scripts.Size = UDim2.new(0, 113, 0, 50)
  43. scripts.Font = Enum.Font.SourceSans
  44. scripts.Text = "scripts"
  45. scripts.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. scripts.TextSize = 14.000
  47. scripts.MouseButton1Down:connect(function()
  48. loadstring(game:HttpGet(("https://pastebin.com/raw/uUwJiJRc"), true))()
  49. end)
  50.  
  51.  
  52. information.Name = "information"
  53. information.Parent = main
  54. information.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  55. information.BorderColor3 = Color3.fromRGB(255, 255, 255)
  56. information.Position = UDim2.new(0.0862615705, 0, 0.77976191, 0)
  57. information.Size = UDim2.new(0, 301, 0, 37)
  58. information.Font = Enum.Font.SourceSans
  59. information.Text = "Genaral information about this Gui (click this to see)"
  60. information.TextColor3 = Color3.fromRGB(255, 255, 255)
  61. information.TextSize = 14.000
  62.  
  63. supportedgames.Name = "supported games "
  64. supportedgames.Parent = main
  65. supportedgames.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  66. supportedgames.BorderColor3 = Color3.fromRGB(255, 255, 255)
  67. supportedgames.Position = UDim2.new(0.341231287, 0, 0.464285702, 0)
  68. supportedgames.Size = UDim2.new(0, 113, 0, 50)
  69. supportedgames.Font = Enum.Font.SourceSans
  70. supportedgames.Text = "supported games"
  71. supportedgames.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. supportedgames.TextSize = 14.000
  73. scripts.MouseButton1Down:connect(function()
  74. loadstring(game:HttpGet(("https://pastebin.com/raw/kwEbtSP3"), true))()
  75. end)
  76.  
  77. credits.Name = "credits"
  78. credits.Parent = main
  79. credits.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  80. credits.BorderColor3 = Color3.fromRGB(255, 255, 255)
  81. credits.Position = UDim2.new(0.68917644, 0, 0.464285702, 0)
  82. credits.Size = UDim2.new(0, 113, 0, 50)
  83. credits.Font = Enum.Font.SourceSans
  84. credits.Text = "credits"
  85. credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  86. credits.TextSize = 14.000
  87.  
  88. X.Name = "X"
  89. X.Parent = main
  90. X.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  91. X.BorderColor3 = Color3.fromRGB(255, 0, 0)
  92. X.Size = UDim2.new(0, 24, 0, 13)
  93. X.Font = Enum.Font.SourceSans
  94. X.Text = "X"
  95. X.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. X.TextSize = 14.000
  97.  
  98. -- Scripts:
  99.  
  100. local function DGTKBGS_fake_script() -- X.LocalScript
  101. local script = Instance.new('LocalScript', X)
  102.  
  103. script.Parent.MouseButton1Click:Connect(function()
  104. script.Parent.Parent.Visible = false
  105. end)
  106.  
  107.  
  108. end
  109. coroutine.wrap(DGTKBGS_fake_script)()
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement