Advertisement
UXRG

as

Feb 28th, 2021
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local aimboy = Instance.new("TextButton")
  9. local esp = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11. local close = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Workspace
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = ScreenGui
  20. Main.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  21. Main.Position = UDim2.new(0, 1161, 0, 488)
  22. Main.Size = UDim2.new(0, 200, 0, 200)
  23.  
  24. aimboy.Name = "aimboy"
  25. aimboy.Parent = Main
  26. aimboy.BackgroundColor3 = Color3.fromRGB(78, 78, 78)
  27. aimboy.BorderSizePixel = 0
  28. aimboy.Position = UDim2.new(0, 30, 0, 62)
  29. aimboy.Size = UDim2.new(0, 140, 0, 40)
  30. aimboy.Font = Enum.Font.SourceSans
  31. aimboy.Text = "Aimbot"
  32. aimboy.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. aimboy.TextScaled = true
  34. aimboy.TextSize = 14.000
  35. aimboy.TextWrapped = true
  36. aimboy.MouseButton1Down:connect(function()
  37. loadstring(game:HttpGet(('https://pastebin.com/raw/CmBR5A1a'),true))()
  38. end)
  39.  
  40. esp.Name = "esp"
  41. esp.Parent = Main
  42. esp.BackgroundColor3 = Color3.fromRGB(78, 78, 78)
  43. esp.BorderSizePixel = 0
  44. esp.Position = UDim2.new(0, 30, 0, 131)
  45. esp.Size = UDim2.new(0, 140, 0, 40)
  46. esp.Font = Enum.Font.SourceSans
  47. esp.Text = "ESP"
  48. esp.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. esp.TextScaled = true
  50. esp.TextSize = 14.000
  51. esp.TextWrapped = true
  52. esp.MouseButton1Down:connect(function()
  53. loadstring(game:HttpGet(('https://pastebin.com/raw/A8nhR9Az'),true))()
  54. end)
  55.  
  56. TextLabel.Parent = Main
  57. TextLabel.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  58. TextLabel.BorderSizePixel = 0
  59. TextLabel.Position = UDim2.new(0, 0, 0, 34)
  60. TextLabel.Size = UDim2.new(0, 200, 0, 22)
  61. TextLabel.Font = Enum.Font.SourceSans
  62. TextLabel.Text = "Arsenal/paintball gui"
  63. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  64. TextLabel.TextScaled = true
  65. TextLabel.TextSize = 14.000
  66. TextLabel.TextWrapped = true
  67.  
  68. close.Name = "close"
  69. close.Parent = Main
  70. close.BackgroundColor3 = Color3.fromRGB(78, 78, 78)
  71. close.BorderSizePixel = 0
  72. close.Position = UDim2.new(0, 160, 0, 0)
  73. close.Size = UDim2.new(0, 40, 0, 34)
  74. close.Font = Enum.Font.SourceSans
  75. close.Text = "x"
  76. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  77. close.TextScaled = true
  78. close.TextSize = 14.000
  79. close.TextWrapped = true
  80.  
  81. -- Scripts:
  82.  
  83. local function CYRZ_fake_script() -- close.LocalScript
  84. local script = Instance.new('LocalScript', close)
  85.  
  86. script.Parent.MouseButton1Click:Connect(function()
  87. script.Parent.Parent.Parent.Main.Visible = false
  88. end)
  89. end
  90. coroutine.wrap(CYRZ_fake_script)()
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement