mjv2023

Admin gui

Aug 21st, 2023
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. -- Create the GUI
  2. local ScreenGui = Instance.new("ScreenGui")
  3. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  4.  
  5. local Frame = Instance.new("Frame")
  6. Frame.Parent = ScreenGui
  7. Frame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  8. Frame.Size = UDim2.new(0, 300, 0, 200)
  9. Frame.Position = UDim2.new(0.5, -150, 0.5, -100)
  10. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  11.  
  12. local Button1 = Instance.new("TextButton")
  13. Button1.Parent = Frame
  14. Button1.BackgroundColor3 = Color3.new(0.5, 0.5, 1)
  15. Button1.Size = UDim2.new(0, 200, 0, 40)
  16. Button1.Position = UDim2.new(0.5, -100, 0.15, 0)
  17. Button1.Text = "C00LKID GUI CODE"
  18. Button1.MouseButton1Click:Connect(function()
  19. loadstring(game:GetObjects('rbxassetid://473373681')[1].Source)()
  20. end)
  21.  
  22. local Button2 = Instance.new("TextButton")
  23. Button2.Parent = Frame
  24. Button2.BackgroundColor3 = Color3.new(0.5, 0.5, 1)
  25. Button2.Size = UDim2.new(0, 200, 0, 40)
  26. Button2.Position = UDim2.new(0.5, -100, 0.4, 0)
  27. Button2.Text = "INFINITE YIELD"
  28. Button2.MouseButton1Click:Connect(function()
  29. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  30. end)
  31.  
  32. local Button3 = Instance.new("TextButton")
  33. Button3.Parent = Frame
  34. Button3.BackgroundColor3 = Color3.new(0.5, 0.5, 1)
  35. Button3.Size = UDim2.new(0, 200, 0, 40)
  36. Button3.Position = UDim2.new(0.5, -100, 0.65, 0)
  37. Button3.Text = "UNFAIR HUB"
  38. Button3.MouseButton1Click:Connect(function()
  39. loadstring(game:HttpGet(('https://raw.githubusercontent.com/rblxscriptsnet/unfair/main/rblxhub.lua'),true))()
  40. end)
  41.  
Add Comment
Please, Sign In to add comment