Advertisement
proHDscirpts

Untitled

Jun 1st, 2022
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 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/akJpH5Lj"), true))()
  49. end)
  50.  
  51. information.Name = "information"
  52. information.Parent = main
  53. information.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  54. information.BorderColor3 = Color3.fromRGB(255, 255, 255)
  55. information.Position = UDim2.new(0.0862615705, 0, 0.77976191, 0)
  56. information.Size = UDim2.new(0, 301, 0, 37)
  57. information.Font = Enum.Font.SourceSans
  58. information.Text = "Genaral information about this Gui (click this to see)"
  59. information.TextColor3 = Color3.fromRGB(255, 255, 255)
  60. information.TextSize = 14.000
  61.  
  62. supportedgames.Name = "supported games "
  63. supportedgames.Parent = main
  64. supportedgames.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  65. supportedgames.BorderColor3 = Color3.fromRGB(255, 255, 255)
  66. supportedgames.Position = UDim2.new(0.341231287, 0, 0.464285702, 0)
  67. supportedgames.Size = UDim2.new(0, 113, 0, 50)
  68. supportedgames.Font = Enum.Font.SourceSans
  69. supportedgames.Text = "supported games"
  70. supportedgames.TextColor3 = Color3.fromRGB(255, 255, 255)
  71. supportedgames.TextSize = 14.000
  72.  
  73. credits.Name = "credits"
  74. credits.Parent = main
  75. credits.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  76. credits.BorderColor3 = Color3.fromRGB(255, 255, 255)
  77. credits.Position = UDim2.new(0.68917644, 0, 0.464285702, 0)
  78. credits.Size = UDim2.new(0, 113, 0, 50)
  79. credits.Font = Enum.Font.SourceSans
  80. credits.Text = "credits"
  81. credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  82. credits.TextSize = 14.000
  83.  
  84. X.Name = "X"
  85. X.Parent = main
  86. X.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  87. X.BorderColor3 = Color3.fromRGB(255, 0, 0)
  88. X.Size = UDim2.new(0, 24, 0, 13)
  89. X.Font = Enum.Font.SourceSans
  90. X.Text = "X"
  91. X.TextColor3 = Color3.fromRGB(255, 255, 255)
  92. X.TextSize = 14.000
  93.  
  94. -- Scripts:
  95.  
  96. local function ZQRBLL_fake_script() -- X.LocalScript
  97. local script = Instance.new('LocalScript', X)
  98.  
  99. script.Parent.MouseButton1Click:Connect(function()
  100. script.Parent.Parent.Visible = false
  101. end)
  102.  
  103.  
  104. end
  105. coroutine.wrap(ZQRBLL_fake_script)()
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement