Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local Tutorial = Instance.new("ScreenGui")
- local Opener = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- local TutorialFrame = Instance.new("Frame")
- local Welcome = Instance.new("TextLabel")
- local MadebyN_evo = Instance.new("TextLabel")
- local Tprobux = Instance.new("TextButton")
- local AutoPunch = Instance.new("TextButton")
- local Close = Instance.new("TextButton")
- -- Properties
- Tutorial.Name = "Tutorial"
- Tutorial.Parent = game.CoreGui
- Opener.Name = "Opener"
- Opener.Parent = Tutorial
- Opener.BackgroundColor3 = Color3.new(1, 1, 1)
- Opener.Position = UDim2.new(0, 0, 0.323429555, 0)
- Opener.Size = UDim2.new(0, 119, 0, 120)
- Open.Name = "Open"
- Open.Parent = Opener
- Open.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- Open.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- Open.Size = UDim2.new(0, 119, 0, 120)
- Open.Font = Enum.Font.SourceSansBold
- Open.FontSize = Enum.FontSize.Size32
- Open.Text = "Open"
- Open.TextColor3 = Color3.new(1, 1, 1)
- Open.TextSize = 30
- TutorialFrame.Name = "TutorialFrame"
- TutorialFrame.Parent = Tutorial
- TutorialFrame.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- TutorialFrame.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- TutorialFrame.Draggable = true
- TutorialFrame.Position = UDim2.new(0.204509705, 0, 0.411714762, 0)
- TutorialFrame.Size = UDim2.new(0, 656, 0, 501)
- TutorialFrame.Visible = false
- Welcome.Name = "Welcome"
- Welcome.Parent = TutorialFrame
- Welcome.BackgroundColor3 = Color3.new(0, 0, 0)
- Welcome.BorderColor3 = Color3.new(0, 0, 0)
- Welcome.Size = UDim2.new(0, 656, 0, 50)
- Welcome.Font = Enum.Font.SourceSansBold
- Welcome.FontSize = Enum.FontSize.Size32
- Welcome.Text = "Welcome to Robux Simulator Gui! have fun :D"
- Welcome.TextColor3 = Color3.new(1, 1, 1)
- Welcome.TextSize = 30
- MadebyN_evo.Name = "Made by N_evo"
- MadebyN_evo.Parent = TutorialFrame
- MadebyN_evo.BackgroundColor3 = Color3.new(0, 0, 0)
- MadebyN_evo.BorderColor3 = Color3.new(0, 0, 0)
- MadebyN_evo.Position = UDim2.new(0, 0, 0.900199592, 0)
- MadebyN_evo.Size = UDim2.new(0, 200, 0, 50)
- MadebyN_evo.Font = Enum.Font.SourceSansBold
- MadebyN_evo.FontSize = Enum.FontSize.Size24
- MadebyN_evo.Text = "Made by N_evo in roblox"
- MadebyN_evo.TextColor3 = Color3.new(1, 1, 1)
- MadebyN_evo.TextSize = 20
- MadebyN_evo.TextWrapped = true
- Tprobux.Name = "Tprobux"
- Tprobux.Parent = TutorialFrame
- Tprobux.BackgroundColor3 = Color3.new(0, 0, 0)
- Tprobux.BorderColor3 = Color3.new(0, 0, 0)
- Tprobux.Position = UDim2.new(0, 0, 0.185628742, 0)
- Tprobux.Size = UDim2.new(0, 168, 0, 90)
- Tprobux.Font = Enum.Font.SourceSansBold
- Tprobux.FontSize = Enum.FontSize.Size14
- Tprobux.Text = "Tp all robux on the ground to you"
- Tprobux.TextColor3 = Color3.new(1, 1, 1)
- Tprobux.TextScaled = true
- Tprobux.TextSize = 14
- Tprobux.TextWrapped = true
- AutoPunch.Name = "Auto Punch"
- AutoPunch.Parent = TutorialFrame
- AutoPunch.BackgroundColor3 = Color3.new(0, 0, 0)
- AutoPunch.BorderColor3 = Color3.new(0, 0, 0)
- AutoPunch.Position = UDim2.new(0.743902445, 0, 0.185628742, 0)
- AutoPunch.Size = UDim2.new(0, 168, 0, 90)
- AutoPunch.Font = Enum.Font.SourceSansBold
- AutoPunch.FontSize = Enum.FontSize.Size32
- AutoPunch.Text = "Auto Punch"
- AutoPunch.TextColor3 = Color3.new(1, 1, 1)
- AutoPunch.TextSize = 30
- Close.Name = "Close"
- Close.Parent = TutorialFrame
- Close.BackgroundColor3 = Color3.new(0, 0, 0)
- Close.BorderColor3 = Color3.new(0, 0, 0)
- Close.Position = UDim2.new(0.92530489, 0, 0, 0)
- Close.Size = UDim2.new(0, 49, 0, 50)
- Close.Font = Enum.Font.SourceSansBold
- Close.FontSize = Enum.FontSize.Size32
- Close.Text = "X"
- Close.TextColor3 = Color3.new(1, 1, 1)
- Close.TextSize = 30
- Open.MouseButton1Click:connect(function()
- game.CoreGui.Tutorial.Opener.Visible = false
- game.CoreGui.Tutorial.TutorialFrame.Visible = true
- end)
- Close.MouseButton1Click:connect(function()
- game.CoreGui.Tutorial.Opener.Visible = true
- game.CoreGui.Tutorial.TutorialFrame.Visible = false
- end)
- Tprobux.MouseButton1Click:connect(function()
- for i,v in pairs(workspace.RobuxHolder:children'') do
- v.Position=game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
- wait(.1)
- end
- end)
- AutoPunch.MouseButton1Click:connect(function()
- while wait() do
- for i = 1,10 do
- game.ReplicatedStorage.Events.Punch:InvokeServer()
- end
- end
- end)
Add Comment
Please, Sign In to add comment