c00lrussian

Untitled

Nov 27th, 2022 (edited)
682
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.90 KB | Gaming | 0 0
  1. -- you can delete or leave this text lol
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local title = Instance.new("TextLabel")
  5. local Text = Instance.new("TextButton")
  6. local Te = Instance.new("TextButton")
  7. local close = Instance.new("TextButton")
  8. local openmain = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. main.Name = "main"
  14. main.Parent = ScreenGui
  15. main.BackgroundColor3 = Color3.new(0, 0, 0)
  16. main.Position = UDim2.new(0.0203577988, 0, 0.641277611, 0)
  17. main.Size = UDim2.new(0, 332, 0, 211)
  18. main.Visible = false
  19. main.Active = true
  20. main.Draggable = true
  21.  
  22. title.Name = "title"
  23. title.Parent = main
  24. title.BackgroundColor3 = Color3.new(1, 0, 1)
  25. title.Size = UDim2.new(0, 332, 0, 31)
  26. title.Font = Enum.Font.GothamBold
  27. title.Text = "c00lguis by c00lrussian"
  28. title.TextColor3 = Color3.new(0, 0, 0)
  29. title.TextSize = 14
  30.  
  31. Text.Name = "Text"
  32. Text.Parent = main
  33. Text.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  34. Text.Position = UDim2.new(0.036144577, 0, 0.379146934, 0)
  35. Text.Size = UDim2.new(0, 110, 0, 50)
  36. Text.Font = Enum.Font.GothamBold
  37. Text.Text = "Oficial c00lgui"
  38. Text.TextColor3 = Color3.new(0, 0, 0)
  39. Text.TextScaled = true
  40. Text.TextSize = 10
  41. Text.TextWrapped = true
  42. Text.MouseButton1Down:connect(function()
  43. loadstring(game:GetObjects("rbxassetid://8127297852")[1].Source)()
  44. end)
  45.  
  46. Te.Name = "Te"
  47. Te.Parent = main
  48. Te.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  49. Te.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  50. Te.Size = UDim2.new(0, 110, 0, 50)
  51. Te.Font = Enum.Font.GothamBold
  52. Te.Text = "Infinite Yield FE"
  53. Te.TextColor3 = Color3.new(0, 0, 0)
  54. Te.TextScaled = true
  55. Te.TextSize = 14
  56. Te.TextWrapped = true
  57. Te.MouseButton1Down:connect(function()
  58. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  59. end)
  60.  
  61. close.Name = "close"
  62. close.Parent = main
  63. close.BackgroundColor3 = Color3.new(1, 0, 0)
  64. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  65. close.Size = UDim2.new(0, 40, 0, 31)
  66. close.Font = Enum.Font.GothamBlack
  67. close.Text = "-"
  68. close.TextColor3 = Color3.new(0, 0, 0)
  69. close.TextScaled = true
  70. close.TextSize = 14
  71. close.TextWrapped = true
  72. close.MouseButton1Down:connect(function()
  73. main.Visible = false
  74. openmain.Visible = true
  75. end)
  76.  
  77. openmain.Name = "openmain"
  78. openmain.Parent = ScreenGui
  79. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  80. openmain.Position = UDim2.new(0.00801973976, 0, 0.423832953, 0)
  81. openmain.Size = UDim2.new(0, 100, 0, 28)
  82. openmain.Active = true
  83. openmain.Draggable = true
  84.  
  85. open.Name = "open"
  86. open.Parent = openmain
  87. open.BackgroundColor3 = Color3.new(1, 0, 0)
  88. open.Size = UDim2.new(0, 100, 0, 28)
  89. open.Font = Enum.Font.GothamBold
  90. open.Text = "Open"
  91. open.TextColor3 = Color3.new(0, 0, 0)
  92. open.TextSize = 18
  93. open.TextWrapped = true
  94. open.MouseButton1Down:connect(function()
  95. openmain.Visible = false
  96. main.Visible = true
  97. end)
Comments
Add Comment
Please, Sign In to add comment