Advertisement
DarkSerpent

e

Feb 6th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 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 TextButton = Instance.new("TextButton")
  10. local TextButton_2 = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  18. Frame.Position = UDim2.new(0.685563087, 0, 0.723044395, 0)
  19. Frame.Size = UDim2.new(0, 185, 0, 131)
  20. Frame.Active = true
  21. Frame.Draggable = true
  22.  
  23. TextLabel.Parent = Frame
  24. TextLabel.BackgroundColor3 = Color3.fromRGB(104, 174, 131)
  25. TextLabel.Size = UDim2.new(0, 185, 0, 50)
  26. TextLabel.Font = Enum.Font.GothamBlack
  27. TextLabel.Text = "BOXING SIMULATOR"
  28. TextLabel.TextColor3 = Color3.fromRGB(204, 212, 195)
  29. TextLabel.TextScaled = true
  30. TextLabel.TextSize = 14.000
  31. TextLabel.TextWrapped = true
  32.  
  33. TextButton.Parent = Frame
  34. TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  35. TextButton.Position = UDim2.new(0.0540540591, 0, 0.458015263, 0)
  36. TextButton.Size = UDim2.new(0, 60, 0, 50)
  37. TextButton.Font = Enum.Font.GothamBold
  38. TextButton.Text = "BOXING SIM GUI"
  39. TextButton.TextColor3 = Color3.fromRGB(131, 131, 131)
  40. TextButton.TextScaled = true
  41. TextButton.TextSize = 14.000
  42. TextButton.TextWrapped = true
  43. TextButton.MouseButton1Down:connect(function()
  44. loadstring(game:HttpGet(('https://pastebin.com/raw/4fBf2W5Q'),true))()
  45. end)
  46. TextButton_2.Parent = Frame
  47. TextButton_2.BackgroundColor3 = Color3.fromRGB(5, 5, 5)
  48. TextButton_2.Position = UDim2.new(0.610811174, 0, 0.458015263, 0)
  49. TextButton_2.Size = UDim2.new(0, 61, 0, 50)
  50. TextButton_2.Font = Enum.Font.GothamBlack
  51. TextButton_2.Text = "Candy Farm"
  52. TextButton_2.TextColor3 = Color3.fromRGB(172, 172, 172)
  53. TextButton_2.TextScaled = true
  54. TextButton_2.TextSize = 14.000
  55. TextButton_2.TextWrapped = true
  56. TextButton_2.MouseButton1Down:connect(function()
  57. loadstring(game:HttpGet(('https://pastebin.com/raw/dANMF7P6'),true))()
  58. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement