Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local GUI = Instance.new("ScreenGui")
- local OpenBut = Instance.new("TextButton")
- local Main = Instance.new("Frame")
- local bar1 = Instance.new("Frame")
- local bar2 = Instance.new("Frame")
- local AutoPunch = Instance.new("TextButton")
- local Bring = Instance.new("TextButton")
- local title = Instance.new("TextLabel")
- local credits = Instance.new("TextLabel")
- local CloseBut = Instance.new("TextButton")
- -- Properties
- GUI.Name = "GUI"
- GUI.Parent = game.CoreGui
- OpenBut.Name = "OpenBut"
- OpenBut.Parent = GUI
- OpenBut.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- OpenBut.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- OpenBut.BorderSizePixel = 0
- OpenBut.Position = UDim2.new(0, 0, 0.892384052, 0)
- OpenBut.Size = UDim2.new(0, 95, 0, 39)
- OpenBut.Font = Enum.Font.SourceSansBold
- OpenBut.Text = "Open"
- OpenBut.TextColor3 = Color3.new(0.027451, 1, 0.188235)
- OpenBut.TextScaled = true
- OpenBut.TextSize = 14
- OpenBut.TextWrapped = true
- OpenBut.MouseButton1Down:connect(function()
- Main.Visible = true
- OpenBut.Visible = false
- end)
- Main.Name = "Main"
- Main.Parent = GUI
- Main.Active = true
- Main.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
- Main.BorderColor3 = Color3.new(0, 0.0156863, 1)
- Main.Draggable = true
- Main.Position = UDim2.new(0.368773937, 0, 0.215231776, 0)
- Main.Selectable = true
- Main.Size = UDim2.new(0, 274, 0, 344)
- Main.Visible = false
- bar1.Name = "bar1"
- bar1.Parent = Main
- bar1.BackgroundColor3 = Color3.new(0, 0.741176, 0.0470588)
- bar1.BorderSizePixel = 0
- bar1.Size = UDim2.new(0, 274, 0, 41)
- bar2.Name = "bar2"
- bar2.Parent = Main
- bar2.BackgroundColor3 = Color3.new(0, 0.6, 0.027451)
- bar2.BorderSizePixel = 0
- bar2.Position = UDim2.new(0, 0, 0.104651161, 0)
- bar2.Size = UDim2.new(0, 274, 0, 12)
- AutoPunch.Name = "AutoPunch"
- AutoPunch.Parent = Main
- AutoPunch.BackgroundColor3 = Color3.new(0, 0.772549, 0)
- AutoPunch.Position = UDim2.new(0.135036498, 0, 0.270348847, 0)
- AutoPunch.Size = UDim2.new(0, 200, 0, 50)
- AutoPunch.Font = Enum.Font.SourceSansBold
- AutoPunch.Text = "Auto Punch"
- AutoPunch.TextColor3 = Color3.new(0.00784314, 0.533333, 0)
- AutoPunch.TextScaled = true
- AutoPunch.TextSize = 14
- AutoPunch.TextWrapped = true
- AutoPunch.MouseButton1Down:connect(function()
- while wait() do
- for i = 1,10 do
- game.ReplicatedStorage.Events.Punch:InvokeServer()
- end
- end
- end)
- Bring.Name = "Bring"
- Bring.Parent = Main
- Bring.BackgroundColor3 = Color3.new(0, 0.772549, 0)
- Bring.Position = UDim2.new(0.135036498, 0, 0.581395388, 0)
- Bring.Size = UDim2.new(0, 200, 0, 50)
- Bring.Font = Enum.Font.SourceSansBold
- Bring.Text = "Bring robux to you"
- Bring.TextColor3 = Color3.new(0.00784314, 0.533333, 0)
- Bring.TextScaled = true
- Bring.TextSize = 14
- Bring.TextWrapped = true
- Bring.MouseButton1Down:connect(function()
- for i,v in pairs(workspace.RobuxHolder:children'') do
- v.Position=game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
- wait(.1)
- end
- end)
- title.Name = "title"
- title.Parent = Main
- title.BackgroundColor3 = Color3.new(0, 0.741176, 0.0470588)
- title.BorderSizePixel = 0
- title.Size = UDim2.new(0, 108, 0, 36)
- title.Font = Enum.Font.SciFi
- title.Text = "Robux Simulator GUI"
- title.TextScaled = true
- title.TextSize = 14
- title.TextWrapped = true
- title.TextXAlignment = Enum.TextXAlignment.Left
- credits.Name = "credits"
- credits.Parent = Main
- credits.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
- credits.BorderSizePixel = 0
- credits.Position = UDim2.new(0.0255474467, 0, 0.941860497, 0)
- credits.Size = UDim2.new(0, 93, 0, 20)
- credits.Font = Enum.Font.SourceSansBold
- credits.Text = "Made by Synax"
- credits.TextScaled = true
- credits.TextSize = 14
- credits.TextWrapped = true
- credits.TextXAlignment = Enum.TextXAlignment.Left
- CloseBut.Name = "CloseBut"
- CloseBut.Parent = Main
- CloseBut.BackgroundColor3 = Color3.new(0, 0.741176, 0.0470588)
- CloseBut.BorderSizePixel = 0
- CloseBut.Position = UDim2.new(0.901459873, 0, 0, 0)
- CloseBut.Size = UDim2.new(0, 27, 0, 30)
- CloseBut.Font = Enum.Font.SourceSansBold
- CloseBut.Text = "X"
- CloseBut.TextColor3 = Color3.new(0.00784314, 0.533333, 0)
- CloseBut.TextScaled = true
- CloseBut.TextSize = 14
- CloseBut.TextWrapped = true
- CloseBut.MouseButton1Down:connect(function()
- Main.Visible = false
- OpenBut.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement