ImCoolBruh65

my own script :nerd:

Sep 2nd, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. --Made by CoolieBoy77716
  2. --Credits to Fates Admin and Infinite Yield
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local InfiniteYield = Instance.new("TextButton")
  7. local Fates = Instance.new("TextButton")
  8. local Open = Instance.new("TextButton")
  9. local close = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. main.Position = UDim2.new(0.255857557, 0, 0.106930695, 0)
  19. main.Size = UDim2.new(0, 501, 0, 306)
  20. main. Active = true
  21. main.Draggable = true
  22.  
  23. InfiniteYield.Name = "Infinite Yield"
  24. InfiniteYield.Parent = main
  25. InfiniteYield.BackgroundColor3 = Color3.fromRGB(80, 81, 68)
  26. InfiniteYield.Position = UDim2.new(0.0638722554, 0, 0.09150327, 0)
  27. InfiniteYield.Size = UDim2.new(0, 200, 0, 238)
  28. InfiniteYield.Font = Enum.Font.SourceSans
  29. InfiniteYield.Text = "Infinite Yield"
  30. InfiniteYield.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. InfiniteYield.TextSize = 40.00
  32. InfiniteYield.MouseButton1Down :Connect(function()
  33. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  34. end)
  35.  
  36.  
  37. Fates.Name = "Fates"
  38. Fates.Parent = main
  39. Fates.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
  40. Fates.Position = UDim2.new(0.53692615, 0, 0.09150327, 0)
  41. Fates.Size = UDim2.new(0, 200, 0, 238)
  42. Fates.Font = Enum.Font.SourceSans
  43. Fates.Text = "Fates Admin"
  44. Fates.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. Fates.TextSize = 40.000
  46. Fates.MouseButton1Down :Connect(function()
  47. loadstring(game:HttpGet("https://raw.githubusercontent.com/fatesc/fates-admin/main/main.lua"))();
  48. end)
  49.  
  50. Open.Name = "Open"
  51. Open.Parent = main
  52. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. Open.Position = UDim2.new(-0.544910192, 0, 0.738562107, 0)
  54. Open.Size = UDim2.new(0, 200, 0, 50)
  55. Open.Font = Enum.Font.SourceSans
  56. Open.Text = "Open"
  57. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. Open.TextSize = 40.000
  59.  
  60. close.Name = "close"
  61. close.Parent = main
  62. close.BackgroundColor3 = Color3.fromRGB(255, 10, 14)
  63. close.Position = UDim2.new(0.770459056, 0, 0, 0)
  64. close.Size = UDim2.new(0, 115, 0, 28)
  65. close.Font = Enum.Font.SourceSans
  66. close.Text = "X"
  67. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. close.TextSize = 40.000
Add Comment
Please, Sign In to add comment