Advertisement
ProlExploiter

Robux Simulator GUI by Synax

Jan 10th, 2018
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. -- Objects
  2.  
  3. local GUI = Instance.new("ScreenGui")
  4. local OpenBut = Instance.new("TextButton")
  5. local Main = Instance.new("Frame")
  6. local bar1 = Instance.new("Frame")
  7. local bar2 = Instance.new("Frame")
  8. local AutoPunch = Instance.new("TextButton")
  9. local Bring = Instance.new("TextButton")
  10. local title = Instance.new("TextLabel")
  11. local credits = Instance.new("TextLabel")
  12. local CloseBut = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. GUI.Name = "GUI"
  17. GUI.Parent = game.CoreGui
  18.  
  19. OpenBut.Name = "OpenBut"
  20. OpenBut.Parent = GUI
  21. OpenBut.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  22. OpenBut.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  23. OpenBut.BorderSizePixel = 0
  24. OpenBut.Position = UDim2.new(0, 0, 0.892384052, 0)
  25. OpenBut.Size = UDim2.new(0, 95, 0, 39)
  26. OpenBut.Font = Enum.Font.SourceSansBold
  27. OpenBut.Text = "Open"
  28. OpenBut.TextColor3 = Color3.new(0.027451, 1, 0.188235)
  29. OpenBut.TextScaled = true
  30. OpenBut.TextSize = 14
  31. OpenBut.TextWrapped = true
  32. OpenBut.MouseButton1Down:connect(function()
  33. Main.Visible = true
  34. OpenBut.Visible = false
  35. end)
  36.  
  37. Main.Name = "Main"
  38. Main.Parent = GUI
  39. Main.Active = true
  40. Main.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  41. Main.BorderColor3 = Color3.new(0, 0.0156863, 1)
  42. Main.Draggable = true
  43. Main.Position = UDim2.new(0.368773937, 0, 0.215231776, 0)
  44. Main.Selectable = true
  45. Main.Size = UDim2.new(0, 274, 0, 344)
  46. Main.Visible = false
  47.  
  48. bar1.Name = "bar1"
  49. bar1.Parent = Main
  50. bar1.BackgroundColor3 = Color3.new(0, 0.741176, 0.0470588)
  51. bar1.BorderSizePixel = 0
  52. bar1.Size = UDim2.new(0, 274, 0, 41)
  53.  
  54. bar2.Name = "bar2"
  55. bar2.Parent = Main
  56. bar2.BackgroundColor3 = Color3.new(0, 0.6, 0.027451)
  57. bar2.BorderSizePixel = 0
  58. bar2.Position = UDim2.new(0, 0, 0.104651161, 0)
  59. bar2.Size = UDim2.new(0, 274, 0, 12)
  60.  
  61. AutoPunch.Name = "AutoPunch"
  62. AutoPunch.Parent = Main
  63. AutoPunch.BackgroundColor3 = Color3.new(0, 0.772549, 0)
  64. AutoPunch.Position = UDim2.new(0.135036498, 0, 0.270348847, 0)
  65. AutoPunch.Size = UDim2.new(0, 200, 0, 50)
  66. AutoPunch.Font = Enum.Font.SourceSansBold
  67. AutoPunch.Text = "Auto Punch"
  68. AutoPunch.TextColor3 = Color3.new(0.00784314, 0.533333, 0)
  69. AutoPunch.TextScaled = true
  70. AutoPunch.TextSize = 14
  71. AutoPunch.TextWrapped = true
  72. AutoPunch.MouseButton1Down:connect(function()
  73. while wait() do
  74. for i = 1,10 do
  75. game.ReplicatedStorage.Events.Punch:InvokeServer()
  76. end
  77. end
  78. end)
  79.  
  80. Bring.Name = "Bring"
  81. Bring.Parent = Main
  82. Bring.BackgroundColor3 = Color3.new(0, 0.772549, 0)
  83. Bring.Position = UDim2.new(0.135036498, 0, 0.581395388, 0)
  84. Bring.Size = UDim2.new(0, 200, 0, 50)
  85. Bring.Font = Enum.Font.SourceSansBold
  86. Bring.Text = "Bring robux to you"
  87. Bring.TextColor3 = Color3.new(0.00784314, 0.533333, 0)
  88. Bring.TextScaled = true
  89. Bring.TextSize = 14
  90. Bring.TextWrapped = true
  91. Bring.MouseButton1Down:connect(function()
  92. for i,v in pairs(workspace.RobuxHolder:children'') do
  93. v.Position=game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
  94. wait(.1)
  95. end
  96. end)
  97.  
  98. title.Name = "title"
  99. title.Parent = Main
  100. title.BackgroundColor3 = Color3.new(0, 0.741176, 0.0470588)
  101. title.BorderSizePixel = 0
  102. title.Size = UDim2.new(0, 108, 0, 36)
  103. title.Font = Enum.Font.SciFi
  104. title.Text = "Robux Simulator GUI"
  105. title.TextScaled = true
  106. title.TextSize = 14
  107. title.TextWrapped = true
  108. title.TextXAlignment = Enum.TextXAlignment.Left
  109.  
  110. credits.Name = "credits"
  111. credits.Parent = Main
  112. credits.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  113. credits.BorderSizePixel = 0
  114. credits.Position = UDim2.new(0.0255474467, 0, 0.941860497, 0)
  115. credits.Size = UDim2.new(0, 93, 0, 20)
  116. credits.Font = Enum.Font.SourceSansBold
  117. credits.Text = "Made by Synax"
  118. credits.TextScaled = true
  119. credits.TextSize = 14
  120. credits.TextWrapped = true
  121. credits.TextXAlignment = Enum.TextXAlignment.Left
  122.  
  123. CloseBut.Name = "CloseBut"
  124. CloseBut.Parent = Main
  125. CloseBut.BackgroundColor3 = Color3.new(0, 0.741176, 0.0470588)
  126. CloseBut.BorderSizePixel = 0
  127. CloseBut.Position = UDim2.new(0.901459873, 0, 0, 0)
  128. CloseBut.Size = UDim2.new(0, 27, 0, 30)
  129. CloseBut.Font = Enum.Font.SourceSansBold
  130. CloseBut.Text = "X"
  131. CloseBut.TextColor3 = Color3.new(0.00784314, 0.533333, 0)
  132. CloseBut.TextScaled = true
  133. CloseBut.TextSize = 14
  134. CloseBut.TextWrapped = true
  135. CloseBut.MouseButton1Down:connect(function()
  136. Main.Visible = false
  137. OpenBut.Visible = true
  138. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement