BailTaashev

Untitled

Mar 8th, 2021 (edited)
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local Berry = Instance.new("TextButton")
  4. local Uniform = Instance.new("TextButton")
  5. local Hunger = Instance.new("TextButton")
  6. local TextLabel = Instance.new("TextLabel")
  7. local ExitMain = Instance.new("TextButton")
  8. local Frame = Instance.new("Frame")
  9. local Open = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  18. main.BorderColor3 = Color3.fromRGB(53, 53, 53)
  19. main.Position = UDim2.new(0.74909091, 0, 0.277912617, 0)
  20. main.Size = UDim2.new(0, 283, 0, 490)
  21. main.Visible = false
  22. main.Draggable = true
  23.  
  24.  
  25. Berry.Name = "Berry"
  26. Berry.Parent = main
  27. Berry.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. Berry.Position = UDim2.new(0, 0, 0.816901386, 0)
  29. Berry.Size = UDim2.new(0, 283, 0, 78)
  30. Berry.Font = Enum.Font.SciFi
  31. Berry.Text = "Berry"
  32. Berry.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. Berry.TextScaled = true
  34. Berry.TextSize = 14.000
  35. Berry.TextWrapped = true
  36. Berry.MouseButton1Down:connect(function()
  37. local A_1 = "BerryBush"
  38. local A_2 = game:GetService("Workspace")["Strange Red Berries"]
  39. local Event = game:GetService("ReplicatedStorage").Game["EVENT_MAIN"]
  40. Event:FireServer(A_1, A_2)
  41. end)
  42.  
  43. Uniform.Name = "Uniform"
  44. Uniform.Parent = main
  45. Uniform.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. Uniform.Position = UDim2.new(0, 0, 0.633802831, 0)
  47. Uniform.Size = UDim2.new(0, 283, 0, 78)
  48. Uniform.Font = Enum.Font.SciFi
  49. Uniform.Text = "Uniform"
  50. Uniform.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. Uniform.TextScaled = true
  52. Uniform.TextSize = 14.000
  53. Uniform.TextWrapped = true
  54. Uniform.MouseButton1Down:connect(function()
  55. local A_1 = "Uniform"
  56. local A_2 = game:GetService("Workspace").Model
  57. local Event = game:GetService("ReplicatedStorage").Game["EVENT_MAIN"]
  58. Event:FireServer(A_1, A_2)
  59. end)
  60.  
  61. Hunger.Name = "Hunger"
  62. Hunger.Parent = main
  63. Hunger.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  64. Hunger.Position = UDim2.new(0, 0, 0.450704217, 0)
  65. Hunger.Size = UDim2.new(0, 283, 0, 78)
  66. Hunger.Font = Enum.Font.SciFi
  67. Hunger.Text = "Hunger"
  68. Hunger.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. Hunger.TextScaled = true
  70. Hunger.TextSize = 14.000
  71. Hunger.TextWrapped = true
  72. Hunger.MouseButton1Down:connect(function()
  73. local A_1 = "UpdateHunger"
  74. local A_2 =
  75. {
  76. ["Value"] = 100 --Тут меняются проценты голода максимум 100
  77. }
  78. local Event = game:GetService("ReplicatedStorage").Game["EVENT_MAIN"]
  79. Event:FireServer(A_1, A_2)
  80. end)
  81.  
  82. TextLabel.Parent = main
  83. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  84. TextLabel.Position = UDim2.new(0, 0, 0.0408163257, 0)
  85. TextLabel.Size = UDim2.new(0, 283, 0, 200)
  86. TextLabel.Font = Enum.Font.SourceSans
  87. TextLabel.Text = "Poor Gui"
  88. TextLabel.TextColor3 = Color3.fromRGB(170, 0, 0)
  89. TextLabel.TextScaled = true
  90. TextLabel.TextSize = 14.000
  91. TextLabel.TextWrapped = true
  92.  
  93. ExitMain.Name = "ExitMain"
  94. ExitMain.Parent = main
  95. ExitMain.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  96. ExitMain.BorderColor3 = Color3.fromRGB(255, 0, 0)
  97. ExitMain.Size = UDim2.new(0, 283, 0, 20)
  98. ExitMain.Font = Enum.Font.SourceSans
  99. ExitMain.Text = "Click here if you want you pc crash"
  100. ExitMain.TextColor3 = Color3.fromRGB(255, 255, 255)
  101. ExitMain.TextScaled = true
  102. ExitMain.TextSize = 14.000
  103. ExitMain.TextWrapped = true
  104. ExitMain.MouseButton1Down:connect(function()
  105. Open.Visible = true
  106. main.Visible = false
  107. end)
  108.  
  109. Frame.Parent = ScreenGui
  110. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  111. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  112. Frame.Position = UDim2.new(0.4939394, 0, 0, 0)
  113. Frame.Size = UDim2.new(0, 100, 0, 20)
  114.  
  115. Open.Name = "Open"
  116. Open.Parent = Frame
  117. Open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  118. Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
  119. Open.Size = UDim2.new(0, 100, 0, 20)
  120. Open.Font = Enum.Font.SourceSans
  121. Open.Text = "Open"
  122. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  123. Open.TextSize = 14.000
  124. Open.MouseButton1Down:connect(function()
  125. main.Visible = true
  126. Open.Visible = false
  127. end)
Advertisement
Add Comment
Please, Sign In to add comment