Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local GUI = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local bar1 = Instance.new("Frame")
- local bar2 = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local credits = Instance.new("TextLabel")
- local StrengthBut = Instance.new("TextButton")
- local RebirthBut = Instance.new("TextButton")
- local OpenBut = Instance.new("TextButton")
- local CloseBut = Instance.new("TextButton")
- -- Properties
- GUI.Name = "GUI"
- GUI.Parent = game.CoreGui
- Main.Name = "Main"
- Main.Parent = GUI
- Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Main.Position = UDim2.new(0.351532578, 0, 0.137417212, 0)
- Main.Size = UDim2.new(0, 310, 0, 342)
- bar1.Name = "bar1"
- bar1.Parent = Main
- bar1.BackgroundColor3 = Color3.new(1, 0, 0)
- bar1.Size = UDim2.new(0, 310, 0, 47)
- bar2.Name = "bar2"
- bar2.Parent = Main
- bar2.BackgroundColor3 = Color3.new(0.827451, 0, 0)
- bar2.BorderSizePixel = 0
- bar2.Position = UDim2.new(0, 0, 0.107061505, 0)
- bar2.Size = UDim2.new(0, 310, 0, 16)
- title.Name = "title"
- title.Parent = Main
- title.BackgroundColor3 = Color3.new(1, 0, 0)
- title.BorderSizePixel = 0
- title.Size = UDim2.new(0, 96, 0, 31)
- title.Font = Enum.Font.SciFi
- title.Text = "Fedora Weight Lifting GUI"
- title.TextScaled = true
- title.TextSize = 14
- title.TextWrapped = true
- credits.Name = "credits"
- credits.Parent = Main
- credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- credits.BorderSizePixel = 0
- credits.Position = UDim2.new(0.0193548389, 0, 0.918128669, 0)
- credits.Size = UDim2.new(0, 78, 0, 22)
- credits.Font = Enum.Font.SourceSansBold
- credits.Text = "Made by Synax"
- credits.TextColor3 = Color3.new(1, 1, 1)
- credits.TextScaled = true
- credits.TextSize = 14
- credits.TextWrapped = true
- credits.TextXAlignment = Enum.TextXAlignment.Left
- StrengthBut.Name = "StrengthBut"
- StrengthBut.Parent = Main
- StrengthBut.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- StrengthBut.Position = UDim2.new(0.309411675, 0, 0.678043127, 0)
- StrengthBut.Size = UDim2.new(0, 141, 0, 50)
- StrengthBut.Font = Enum.Font.SourceSansBold
- StrengthBut.Text = "Strength"
- StrengthBut.TextColor3 = Color3.new(1, 0, 0)
- StrengthBut.TextScaled = true
- StrengthBut.TextSize = 14
- StrengthBut.TextWrapped = true
- StrengthBut.MouseButton1Down:connect(function()
- local rtable = {
- Cmd = "GiveStrength",
- Amount = 1000
- }
- for i= 1, 100 do
- game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
- end
- end)
- RebirthBut.Name = "RebirthBut"
- RebirthBut.Parent = Main
- RebirthBut.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
- RebirthBut.Position = UDim2.new(0.309890598, 0, 0.306359172, 0)
- RebirthBut.Size = UDim2.new(0, 141, 0, 50)
- RebirthBut.Font = Enum.Font.SourceSansBold
- RebirthBut.Text = "Rebirth"
- RebirthBut.TextColor3 = Color3.new(1, 0, 0)
- RebirthBut.TextScaled = true
- RebirthBut.TextSize = 14
- RebirthBut.TextWrapped = true
- RebirthBut.MouseButton1Down:connect(function()
- local rtable = {
- Cmd = "Rebirth"
- }
- for i= 1, 100 do
- game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
- end
- end)
- OpenBut.Name = "OpenBut"
- OpenBut.Parent = Main
- OpenBut.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- OpenBut.Position = UDim2.new(1.84458661, 0, 1.19954693, 0)
- OpenBut.Size = UDim2.new(0, 105, 0, 50)
- OpenBut.Font = Enum.Font.SourceSansBold
- OpenBut.Text = "Open"
- OpenBut.TextColor3 = Color3.new(1, 0, 0)
- OpenBut.TextScaled = true
- OpenBut.TextSize = 14
- OpenBut.TextWrapped = true
- OpenBut.MouseButton1Down:connect(function()
- OpenBut.Visible = false
- Main.Visible = true
- CloseBut.Visible = true
- end)
- CloseBut.Name = "CloseBut"
- CloseBut.Parent = Main
- CloseBut.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- CloseBut.Position = UDim2.new(1.84458661, 0, 1.19954693, 0)
- CloseBut.Size = UDim2.new(0, 105, 0, 50)
- CloseBut.Visible = false
- CloseBut.Font = Enum.Font.SourceSansBold
- CloseBut.Text = "Close"
- CloseBut.TextColor3 = Color3.new(1, 0, 0)
- CloseBut.TextScaled = true
- CloseBut.TextSize = 14
- CloseBut.TextWrapped = true
- CloseBut.MouseButton1Down:connect(function()
- CloseBut.Visible = false
- Main.Visible = false
- OpenBut.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement