Advertisement
Aknologia

Gun Simulator GUI V1.2 (Coins/Presents Autofarm)

Dec 22nd, 2019
4,877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.44 KB | None | 0 0
  1. -- Roblox Gun Simulator GUI
  2. -- V1.2
  3. -- Game: https://www.roblox.com/games/4036494886/
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local Frame = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextButton = Instance.new("TextButton")
  11. local TextButton_2 = Instance.new("TextButton")
  12. local TextButton_3 = Instance.new("TextButton")
  13. local TextButton_4 = Instance.new("TextButton")
  14. local TextButton_5 = Instance.new("TextButton")
  15. local TextButton_6 = Instance.new("TextButton")
  16. local Frame_2 = Instance.new("Frame")
  17. local TextButton_7 = Instance.new("TextButton")
  18.  
  19. --Properties:
  20.  
  21. ScreenGui.Parent = game.CoreGui
  22.  
  23. Frame.Parent = ScreenGui
  24. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  25. Frame.Position = UDim2.new(0.0788844526, 0, 0.54004848, 0)
  26. Frame.Size = UDim2.new(0, 297, 0, 274)
  27. Frame.Visible = false
  28. Frame.Active = true
  29. Frame.Draggable = true
  30.  
  31. TextLabel.Parent = Frame
  32. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  33. TextLabel.Size = UDim2.new(0, 297, 0, 23)
  34. TextLabel.Font = Enum.Font.Gotham
  35. TextLabel.Text = "Aknologia#0905"
  36. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  37. TextLabel.TextSize = 20
  38.  
  39. TextButton.Parent = Frame
  40. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  41. TextButton.Position = UDim2.new(0.0370370448, 0, 0.145985395, 0)
  42. TextButton.Size = UDim2.new(0, 124, 0, 50)
  43. TextButton.Font = Enum.Font.SourceSans
  44. TextButton.Text = "Present Farm"
  45. TextButton.TextColor3 = Color3.new(1, 1, 1)
  46. TextButton.TextSize = 14
  47. TextButton.MouseButton1Down:connect(function()
  48. while true do
  49. wait(0.4)
  50. if workspace.Game.Local.Pickups:FindFirstChild("Present") then
  51. game:GetService("Workspace").Game.Local.Pickups.Present.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  52. end
  53. end
  54. end)
  55.  
  56. TextButton_2.Parent = Frame
  57. TextButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
  58. TextButton_2.Position = UDim2.new(0.508417487, 0, 0.145985395, 0)
  59. TextButton_2.Size = UDim2.new(0, 124, 0, 50)
  60. TextButton_2.Font = Enum.Font.SourceSans
  61. TextButton_2.Text = "Coin Farm"
  62. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  63. TextButton_2.TextSize = 14
  64. TextButton_2.MouseButton1Down:connect(function()
  65. while wait() do
  66. if workspace.Game.Local.Pickups:FindFirstChild("Coin") then
  67. game:GetService("Workspace").Game.Local.Pickups.Coin.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  68. end
  69. end
  70. end)
  71.  
  72.  
  73.  
  74.  
  75. TextButton_6.Parent = Frame
  76. TextButton_6.BackgroundColor3 = Color3.new(1, 0, 0)
  77. TextButton_6.Position = UDim2.new(0.92592591, 0, 0, 0)
  78. TextButton_6.Size = UDim2.new(0, 22, 0, 23)
  79. TextButton_6.Font = Enum.Font.GothamBold
  80. TextButton_6.Text = "X"
  81. TextButton_6.TextColor3 = Color3.new(0, 0, 0)
  82. TextButton_6.TextSize = 28
  83. TextButton_6.MouseButton1Down:connect(function()
  84. Frame.Visible = false
  85. Frame_2.Visible = true
  86. end)
  87.  
  88. Frame_2.Parent = ScreenGui
  89. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  90. Frame_2.Position = UDim2.new(0.00717131514, 0, 0.444174707, 0)
  91. Frame_2.Size = UDim2.new(0, 91, 0, 28)
  92. Frame.Active = true
  93. Frame.Draggable = true
  94.  
  95.  
  96. TextButton_7.Parent = Frame_2
  97. TextButton_7.BackgroundColor3 = Color3.new(0, 0, 0)
  98. TextButton_7.Position = UDim2.new(0, 0, 0, 0)
  99. TextButton_7.Size = UDim2.new(0,190, 0, 260)
  100. TextButton_7.Font = Enum.Font.GotamBlack
  101. TextButton_7.Text = "Open"
  102. TextButton_7.TextColor3 = Color3.new(1, 1, 1)
  103. TextButton_7.TextSize = 50
  104. TextButton_7.MouseButton1Down:connect(function()
  105. Frame_2.Visible = false
  106. Frame.Visible = true      
  107. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement