Advertisement
proHDscirpts

Untitled

May 26th, 2022
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 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 Openscript = Instance.new("TextButton")
  7. local Closegui = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. main.Name = "main"
  15. main.Parent = ScreenGui
  16. main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  17. main.Position = UDim2.new(0.600205541, 0, 0.545623839, 0)
  18. main.Size = UDim2.new(0, 297, 0, 155)
  19. main.Active = true
  20. main.Draggable = true
  21.  
  22. label.Name = "label"
  23. label.Parent = main
  24. label.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  25. label.Size = UDim2.new(0, 245, 0, 50)
  26. label.Font = Enum.Font.SourceSans
  27. label.Text = "script loading. Finished click below!"
  28. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  29. label.TextSize = 14.000
  30.  
  31. Openscript.Name = "Open script"
  32. Openscript.Parent = main
  33. Openscript.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  34. Openscript.Position = UDim2.new(0.0606060624, 0, 0.400000006, 0)
  35. Openscript.Size = UDim2.new(0, 253, 0, 84)
  36. Openscript.Font = Enum.Font.SourceSans
  37. Openscript.Text = "Open script for da hood!"
  38. Openscript.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. Openscript.TextSize = 14.000
  40. Openscript.MouseButton1Down:connect(function()
  41. loadstring(game:HttpGet(("https://pastebin.com/raw/SnxE43Jn"), true))()
  42. end)
  43.  
  44. Closegui.Name = "Close gui"
  45. Closegui.Parent = main
  46. Closegui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  47. Closegui.Position = UDim2.new(0.824915826, 0, 0, 0)
  48. Closegui.Size = UDim2.new(0, 52, 0, 50)
  49. Closegui.Font = Enum.Font.SourceSans
  50. Closegui.Text = "X"
  51. Closegui.TextColor3 = Color3.fromRGB(170, 0, 0)
  52. Closegui.TextSize = 40.000
  53.  
  54. -- Scripts:
  55.  
  56. local function OQINRC_fake_script() -- Closegui.LocalScript
  57. local script = Instance.new('LocalScript', Closegui)
  58.  
  59. script.Parent.MouseButton1Click:Connect(function()
  60. script.Parent.Parent.Visible = false
  61. end)
  62.  
  63. end
  64. coroutine.wrap(OQINRC_fake_script)()
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement