Advertisement
proHDscirpts

Untitled

Jun 3rd, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 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 label_2 = Instance.new("TextLabel")
  7. local label_3 = Instance.new("TextLabel")
  8. local label_4 = Instance.new("TextLabel")
  9. local label_5 = Instance.new("TextLabel")
  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(0, 0, 0)
  20. main.BorderColor3 = Color3.fromRGB(255, 255, 255)
  21. main.Position = UDim2.new(0.480122358, 0, 0.290488422, 0)
  22. main.Size = UDim2.new(0, 396, 0, 250)
  23. main.Active = true
  24. main.Draggable = true
  25.  
  26. label.Name = "label"
  27. label.Parent = main
  28. label.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  29. label.BorderColor3 = Color3.fromRGB(255, 255, 255)
  30. label.Position = UDim2.new(0.0328282826, 0, 0, 0)
  31. label.Size = UDim2.new(0, 369, 0, 50)
  32. label.Font = Enum.Font.Code
  33. label.Text = "Page 2, Supported games| made by bøwl#9999"
  34. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. label.TextSize = 16.000
  36.  
  37. label_2.Name = "label"
  38. label_2.Parent = main
  39. label_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  40. label_2.BorderColor3 = Color3.fromRGB(255, 255, 255)
  41. label_2.Position = UDim2.new(0.517676771, 0, 0.280000001, 0)
  42. label_2.Size = UDim2.new(0, 180, 0, 50)
  43. label_2.Font = Enum.Font.Code
  44. label_2.Text = "3rd, Jailbreak"
  45. label_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. label_2.TextSize = 16.000
  47.  
  48. label_3.Name = "label"
  49. label_3.Parent = main
  50. label_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  51. label_3.BorderColor3 = Color3.fromRGB(255, 255, 255)
  52. label_3.Position = UDim2.new(0.0328282826, 0, 0.512000024, 0)
  53. label_3.Size = UDim2.new(0, 369, 0, 50)
  54. label_3.Font = Enum.Font.Code
  55. label_3.Text = "2nd, Da hood (coming soon)"
  56. label_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  57. label_3.TextSize = 16.000
  58.  
  59. label_4.Name = "label"
  60. label_4.Parent = main
  61. label_4.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  62. label_4.BorderColor3 = Color3.fromRGB(255, 255, 255)
  63. label_4.Position = UDim2.new(0.0328282826, 0, 0.280000001, 0)
  64. label_4.Size = UDim2.new(0, 184, 0, 50)
  65. label_4.Font = Enum.Font.Code
  66. label_4.Text = "1st, Combat warriors"
  67. label_4.TextColor3 = Color3.fromRGB(255, 255, 255)
  68. label_4.TextSize = 16.000
  69.  
  70. label_5.Name = "label"
  71. label_5.Parent = main
  72. label_5.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  73. label_5.BorderColor3 = Color3.fromRGB(255, 255, 255)
  74. label_5.Position = UDim2.new(0.0328282826, 0, 0.747999966, 0)
  75. label_5.Size = UDim2.new(0, 369, 0, 50)
  76. label_5.Font = Enum.Font.Code
  77. label_5.Text = "4th, Tower Of Hell (toh"
  78. label_5.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. label_5.TextSize = 16.000
  80.  
  81. X.Name = "X"
  82. X.Parent = main
  83. X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  84. X.Position = UDim2.new(0, 0, 0.200000003, 0)
  85. X.Size = UDim2.new(0, 396, 0, 20)
  86. X.Font = Enum.Font.Code
  87. X.Text = "Close Gui"
  88. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  89. X.TextSize = 14.000
  90.  
  91. -- Scripts:
  92.  
  93. local function TJHM_fake_script() -- X.LocalScript
  94. local script = Instance.new('LocalScript', X)
  95.  
  96. script.Parent.MouseButton1Click:Connect(function()
  97. script.Parent.Parent.Visible = false
  98. end)
  99.  
  100. end
  101. coroutine.wrap(TJHM_fake_script)()
  102.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement