Advertisement
AtomicOs

Untitled

Jun 18th, 2021
2,462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Instances:
  2.  
  3. local ScriptGUI = Instance.new("ScreenGui")
  4. local MainFrame = Instance.new("Frame")
  5. local UICorner = Instance.new("UICorner")
  6. local AutoclickTradeBux = Instance.new("TextButton")
  7. local UICorner_2 = Instance.new("UICorner")
  8. local TextLabel = Instance.new("TextLabel")
  9.  
  10.  
  11. --Properties:
  12.  
  13. ScriptGUI.Name = "ScriptGUI"
  14. ScriptGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScriptGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16. ScriptGUI.ResetOnSpawn = false
  17.  
  18. MainFrame.Name = "MainFrame"
  19. MainFrame.Parent = ScriptGUI
  20. MainFrame.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  21. MainFrame.Position = UDim2.new(0.330220729, 0, 0.297026038, 0)
  22. MainFrame.Size = UDim2.new(0, 400, 0, 250)
  23.  
  24. UICorner.Parent = MainFrame
  25.  
  26. AutoclickTradeBux.Name = "AutoclickTradeBux"
  27. AutoclickTradeBux.Parent = MainFrame
  28. AutoclickTradeBux.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  29. AutoclickTradeBux.BorderColor3 = Color3.fromRGB(0, 0, 0)
  30. AutoclickTradeBux.BorderSizePixel = 2
  31. AutoclickTradeBux.Position = UDim2.new(0.25, 0, 0.400000006, 0)
  32. AutoclickTradeBux.Size = UDim2.new(0, 200, 0, 50)
  33. AutoclickTradeBux.Font = Enum.Font.GothamBold
  34. AutoclickTradeBux.Text = "Autoclick TradeBux"
  35. AutoclickTradeBux.TextColor3 = Color3.fromRGB(255, 255, 255)
  36. AutoclickTradeBux.TextScaled = true
  37. AutoclickTradeBux.TextSize = 19.000
  38. AutoclickTradeBux.TextStrokeTransparency = 0.000
  39. AutoclickTradeBux.TextWrapped = true
  40.  
  41. UICorner_2.Parent = AutoclickTradeBux
  42.  
  43. TextLabel.Parent = MainFrame
  44. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  45. TextLabel.BackgroundTransparency = 1.000
  46. TextLabel.BorderSizePixel = 0
  47. TextLabel.Size = UDim2.new(0, 400, 0, 50)
  48. TextLabel.Font = Enum.Font.Ubuntu
  49. TextLabel.Text = "Trade Tower GUI"
  50. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. TextLabel.TextSize = 40.000
  52. TextLabel.TextStrokeTransparency = 0.000
  53. TextLabel.TextWrapped = true
  54.  
  55.  
  56. -- Scripts:
  57.  
  58. local function ICFN_fake_script() -- AutoclickTradeBux.LocalScript
  59.     local script = Instance.new('LocalScript', AutoclickTradeBux)
  60.  
  61.     AutoclickTradeBux.MouseButton1Down:connect(function()
  62.         _G.AF = true
  63.         while true do
  64.             if AF == true then
  65.                 wait(0.1)
  66.                 local Event = game:GetService("ReplicatedStorage").Events.Click
  67.                 Event:FireServer()
  68.             end
  69.         end
  70.     end)
  71. end
  72. coroutine.wrap(ICFN_fake_script)()
  73. local function BICQTD_fake_script() -- ScriptGUI.LocalScript
  74.     local script = Instance.new('LocalScript', ScriptGUI)
  75.  
  76.     frame = script.Parent.MainFrame
  77.     frame.Draggable = true
  78.     frame.Active = true
  79.     frame.Selectable = true
  80. end
  81. coroutine.wrap(BICQTD_fake_script)()
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement