Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local Tutorial = Instance.new("ScreenGui")
- local Open = Instance.new("Frame")
- local OpenGui = Instance.new("TextButton")
- local MainGui = Instance.new("Frame")
- local Rebirth = Instance.new("TextButton")
- local Power = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- -- Properties
- Tutorial.Name = "Tutorial"
- Tutorial.Parent = game.CoreGui
- Open.Name = "Open"
- Open.Parent = Tutorial
- Open.BackgroundColor3 = Color3.new(1, 1, 1)
- Open.Position = UDim2.new(0, 0, 0.358190715, 0)
- Open.Size = UDim2.new(0, 117, 0, 104)
- OpenGui.Name = "OpenGui"
- OpenGui.Parent = Open
- OpenGui.BackgroundColor3 = Color3.new(0, 0, 0)
- OpenGui.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
- OpenGui.Size = UDim2.new(0, 117, 0, 104)
- OpenGui.Font = Enum.Font.SourceSansBold
- OpenGui.FontSize = Enum.FontSize.Size32
- OpenGui.Text = "Open"
- OpenGui.TextColor3 = Color3.new(1, 1, 1)
- OpenGui.TextSize = 30
- MainGui.Name = "MainGui"
- MainGui.Parent = Tutorial
- MainGui.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- MainGui.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- MainGui.Draggable = true
- MainGui.Position = UDim2.new(0.266514808, 0, 0.301955998, 0)
- MainGui.Size = UDim2.new(0, 506, 0, 382)
- MainGui.Visible = false
- Rebirth.Name = "Rebirth"
- Rebirth.Parent = MainGui
- Rebirth.BackgroundColor3 = Color3.new(0, 0, 0)
- Rebirth.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
- Rebirth.Position = UDim2.new(0, 0, 0.261780113, 0)
- Rebirth.Size = UDim2.new(0, 135, 0, 92)
- Rebirth.Font = Enum.Font.SourceSansBold
- Rebirth.FontSize = Enum.FontSize.Size32
- Rebirth.Text = "Rebirth"
- Rebirth.TextColor3 = Color3.new(1, 1, 1)
- Rebirth.TextSize = 30
- Power.Name = "Power"
- Power.Parent = MainGui
- Power.BackgroundColor3 = Color3.new(0, 0, 0)
- Power.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
- Power.Position = UDim2.new(0.733201563, 0, 0.261780113, 0)
- Power.Size = UDim2.new(0, 135, 0, 92)
- Power.Font = Enum.Font.SourceSansBold
- Power.FontSize = Enum.FontSize.Size32
- Power.Text = "Power"
- Power.TextColor3 = Color3.new(1, 1, 1)
- Power.TextSize = 30
- TextLabel.Parent = MainGui
- TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel.BorderColor3 = Color3.new(0.333333, 1, 1)
- TextLabel.Size = UDim2.new(0, 458, 0, 50)
- TextLabel.Font = Enum.Font.SourceSansBold
- TextLabel.FontSize = Enum.FontSize.Size28
- TextLabel.Text = "Welcome to dominus weight lifting simulator gui"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 25
- TextLabel_2.Parent = MainGui
- TextLabel_2.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- TextLabel_2.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
- TextLabel_2.Position = UDim2.new(0, 0, 0.945026159, 0)
- TextLabel_2.Size = UDim2.new(0, 200, 0, 21)
- TextLabel_2.Font = Enum.Font.SourceSansBold
- TextLabel_2.FontSize = Enum.FontSize.Size24
- TextLabel_2.Text = "By Ne_vo#8128"
- TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_2.TextSize = 20
- TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
- Close.Name = "Close"
- Close.Parent = MainGui
- Close.BackgroundColor3 = Color3.new(0, 0, 0)
- Close.BorderColor3 = Color3.new(0, 0, 0)
- Close.Position = UDim2.new(0.918972313, 0, 0, 0)
- Close.Size = UDim2.new(0, 41, 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
- OpenGui.MouseButton1Click:connect(function()
- game.CoreGui.Tutorial.Open.Visible = false
- game.CoreGui.Tutorial.MainGui.Visible = true
- end)
- Power.MouseButton1Click:connect(function()
- local rtable = {
- Cmd = "GiveStrength",
- Amount = 1000
- }
- for i= 1, 100 do
- game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
- end
- end)
- Rebirth.MouseButton1Click:connect(function()
- local rtable = {
- Cmd = "Rebirth"
- }
- for i= 1, 100 do
- game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
- end
- end)
- Close.MouseButton1Click:connect(function()
- game.CoreGui.Tutorial.MainGui.Visible = false
- game.CoreGui.Tutorial.Open.Visible = true
- end)
Add Comment
Please, Sign In to add comment