skpr

skpr Roblox Scripts

Apr 9th, 2022
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local TextButton = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ResetOnSpawn = false
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.fromRGB(8, 12, 255)
  19. Frame.Position = UDim2.new(0.420606047, 0, 0.320245385, 0)
  20. Frame.Size = UDim2.new(0, 335, 0, 324)
  21. Frame.Active = true
  22. Frame.Draggable = true
  23.  
  24. TextLabel.Parent = Frame
  25. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 46, 255)
  26. TextLabel.Size = UDim2.new(0, 335, 0, 50)
  27. TextLabel.Font = Enum.Font.SciFi
  28. TextLabel.Text = "Infinite Yield GUI"
  29. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. TextLabel.TextSize = 30.000
  31.  
  32. TextLabel_2.Parent = Frame
  33. TextLabel_2.BackgroundColor3 = Color3.fromRGB(0, 46, 255)
  34. TextLabel_2.Position = UDim2.new(0, 0, 0.845678985, 0)
  35. TextLabel_2.Size = UDim2.new(0, 335, 0, 50)
  36. TextLabel_2.Font = Enum.Font.SciFi
  37. TextLabel_2.Text = "Made By Frostyvxs#8214"
  38. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. TextLabel_2.TextSize = 30.000
  40.  
  41. TextButton.Parent = Frame
  42. TextButton.BackgroundColor3 = Color3.fromRGB(49, 142, 255)
  43. TextButton.Position = UDim2.new(0.143283576, 0, 0.206790119, 0)
  44. TextButton.Size = UDim2.new(0, 234, 0, 193)
  45. TextButton.Font = Enum.Font.Cartoon
  46. TextButton.Text = "Activate!"
  47. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. TextButton.MouseButton1Down:connect(function()
  49. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  50. end)
Add Comment
Please, Sign In to add comment