Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local Berry = Instance.new("TextButton")
- local Uniform = Instance.new("TextButton")
- local Hunger = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local ExitMain = Instance.new("TextButton")
- local Frame = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- main.BorderColor3 = Color3.fromRGB(53, 53, 53)
- main.Position = UDim2.new(0.74909091, 0, 0.277912617, 0)
- main.Size = UDim2.new(0, 283, 0, 490)
- main.Visible = false
- main.Draggable = true
- Berry.Name = "Berry"
- Berry.Parent = main
- Berry.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Berry.Position = UDim2.new(0, 0, 0.816901386, 0)
- Berry.Size = UDim2.new(0, 283, 0, 78)
- Berry.Font = Enum.Font.SciFi
- Berry.Text = "Berry"
- Berry.TextColor3 = Color3.fromRGB(0, 0, 0)
- Berry.TextScaled = true
- Berry.TextSize = 14.000
- Berry.TextWrapped = true
- Berry.MouseButton1Down:connect(function()
- local A_1 = "BerryBush"
- local A_2 = game:GetService("Workspace")["Strange Red Berries"]
- local Event = game:GetService("ReplicatedStorage").Game["EVENT_MAIN"]
- Event:FireServer(A_1, A_2)
- end)
- Uniform.Name = "Uniform"
- Uniform.Parent = main
- Uniform.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Uniform.Position = UDim2.new(0, 0, 0.633802831, 0)
- Uniform.Size = UDim2.new(0, 283, 0, 78)
- Uniform.Font = Enum.Font.SciFi
- Uniform.Text = "Uniform"
- Uniform.TextColor3 = Color3.fromRGB(0, 0, 0)
- Uniform.TextScaled = true
- Uniform.TextSize = 14.000
- Uniform.TextWrapped = true
- Uniform.MouseButton1Down:connect(function()
- local A_1 = "Uniform"
- local A_2 = game:GetService("Workspace").Model
- local Event = game:GetService("ReplicatedStorage").Game["EVENT_MAIN"]
- Event:FireServer(A_1, A_2)
- end)
- Hunger.Name = "Hunger"
- Hunger.Parent = main
- Hunger.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Hunger.Position = UDim2.new(0, 0, 0.450704217, 0)
- Hunger.Size = UDim2.new(0, 283, 0, 78)
- Hunger.Font = Enum.Font.SciFi
- Hunger.Text = "Hunger"
- Hunger.TextColor3 = Color3.fromRGB(0, 0, 0)
- Hunger.TextScaled = true
- Hunger.TextSize = 14.000
- Hunger.TextWrapped = true
- Hunger.MouseButton1Down:connect(function()
- local A_1 = "UpdateHunger"
- local A_2 =
- {
- ["Value"] = 100 --Тут меняются проценты голода максимум 100
- }
- local Event = game:GetService("ReplicatedStorage").Game["EVENT_MAIN"]
- Event:FireServer(A_1, A_2)
- end)
- TextLabel.Parent = main
- TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.Position = UDim2.new(0, 0, 0.0408163257, 0)
- TextLabel.Size = UDim2.new(0, 283, 0, 200)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Poor Gui"
- TextLabel.TextColor3 = Color3.fromRGB(170, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- ExitMain.Name = "ExitMain"
- ExitMain.Parent = main
- ExitMain.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- ExitMain.BorderColor3 = Color3.fromRGB(255, 0, 0)
- ExitMain.Size = UDim2.new(0, 283, 0, 20)
- ExitMain.Font = Enum.Font.SourceSans
- ExitMain.Text = "Click here if you want you pc crash"
- ExitMain.TextColor3 = Color3.fromRGB(255, 255, 255)
- ExitMain.TextScaled = true
- ExitMain.TextSize = 14.000
- ExitMain.TextWrapped = true
- ExitMain.MouseButton1Down:connect(function()
- Open.Visible = true
- main.Visible = false
- end)
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.Position = UDim2.new(0.4939394, 0, 0, 0)
- Frame.Size = UDim2.new(0, 100, 0, 20)
- Open.Name = "Open"
- Open.Parent = Frame
- Open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Open.Size = UDim2.new(0, 100, 0, 20)
- Open.Font = Enum.Font.SourceSans
- Open.Text = "Open"
- Open.TextColor3 = Color3.fromRGB(255, 255, 255)
- Open.TextSize = 14.000
- Open.MouseButton1Down:connect(function()
- main.Visible = true
- Open.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment