Advertisement
FurkingBoi

Buff simulator

May 22nd, 2020
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.05 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextButton_2 = Instance.new("TextButton")
  11. local TextButton_3 = Instance.new("TextButton")
  12. local TextButton_4 = Instance.new("TextButton")
  13. local TextButton_5 = Instance.new("TextButton")
  14. local TextButton_6 = Instance.new("TextButton")
  15. local Frame_2 = Instance.new("Frame")
  16. local TextButton_7 = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  24. Frame.Position = UDim2.new(0.0788844526, 0, 0.54004848, 0)
  25. Frame.Size = UDim2.new(0, 297, 0, 274)
  26. Frame.Visible = false
  27. Frame.Active = true
  28. Frame.Draggable = true
  29.  
  30. TextLabel.Parent = Frame
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.Size = UDim2.new(0, 297, 0, 23)
  33. TextLabel.Font = Enum.Font.GothamBlack
  34. TextLabel.Text = "Buff Simulator GUI"
  35. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  36. TextLabel.TextSize = 20
  37.  
  38. TextButton.Parent = Frame
  39. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextButton.Position = UDim2.new(0.0370370448, 0, 0.145985395, 0)
  41. TextButton.Size = UDim2.new(0, 124, 0, 50)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "AutoPunch"
  44. TextButton.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton.TextSize = 14
  46. TextButton.MouseButton1Down:connect(function()
  47. --AutoPunch
  48. _G.PUNC = true --change to true or false
  49. while _G.PUNC do
  50. wait() --change time if you want
  51. local E_E = "FirePunch"
  52. local D_D = "Right"
  53. local L_L = "Left"
  54. game:GetService("ReplicatedStorage").RE:FireServer(E_E,D_D,L_L)
  55. end
  56. end)
  57.  
  58. TextButton_2.Parent = Frame
  59. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  60. TextButton_2.Position = UDim2.new(0.508417487, 0, 0.145985395, 0)
  61. TextButton_2.Size = UDim2.new(0, 124, 0, 50)
  62. TextButton_2.Font = Enum.Font.SourceSans
  63. TextButton_2.Text = "AutoSell"
  64. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  65. TextButton_2.TextSize = 14
  66. TextButton_2.MouseButton1Down:connect(function()
  67. --Autosell
  68. _G.SELL = true --change to true or false
  69. while _G.SELL do
  70. wait(1) --change time if you want
  71. local sell = game.workspace.Sell
  72. sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  73. end
  74. end)
  75.  
  76. TextButton_3.Parent = Frame
  77. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  78. TextButton_3.Position = UDim2.new(0.0370370448, 0, 0.434306532, 0)
  79. TextButton_3.Size = UDim2.new(0, 280, 0, 50)
  80. TextButton_3.Font = Enum.Font.SourceSans
  81. TextButton_3.Text = "AutoHill"
  82. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  83. TextButton_3.TextSize = 14
  84. TextButton_3.MouseButton1Down:connect(function()
  85. --AutoHill
  86. _G.HILL = true--change to true or false
  87. while _G.HILL do
  88. wait(1)--change time if you want
  89. local king = game.workspace["King Of The Hill Modules"]["King Of The Hill Module"].KoTHBase
  90. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = king.CFrame
  91. end
  92. end)
  93.  
  94. TextButton_6.Parent = Frame
  95. TextButton_6.BackgroundColor3 = Color3.new(1, 0, 0)
  96. TextButton_6.Position = UDim2.new(0.92592591, 0, 0, 0)
  97. TextButton_6.Size = UDim2.new(0, 22, 0, 23)
  98. TextButton_6.Font = Enum.Font.GothamBold
  99. TextButton_6.Text = "X"
  100. TextButton_6.TextColor3 = Color3.new(0, 0, 0)
  101. TextButton_6.TextSize = 28
  102. TextButton_6.MouseButton1Down:connect(function()
  103. Frame.Visible = false
  104. Frame_2.Visible = true
  105. end)
  106.  
  107. Frame_2.Parent = ScreenGui
  108. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  109. Frame_2.Position = UDim2.new(0.00717131514, 0, 0.444174707, 0)
  110. Frame_2.Size = UDim2.new(0, 91, 0, 28)
  111. Frame.Active = true
  112. Frame.Draggable = true
  113.  
  114.  
  115. TextButton_7.Parent = Frame_2
  116. TextButton_7.BackgroundColor3 = Color3.new(1, 1, 1)
  117. TextButton_7.Position = UDim2.new(0, 0, 0.0357142873, 0)
  118. TextButton_7.Size = UDim2.new(0, 190, 0, 260)
  119. TextButton_7.Font = Enum.Font.SourceSans
  120. TextButton_7.Text = "Open"
  121. TextButton_7.TextColor3 = Color3.new(0, 0, 0)
  122. TextButton_7.TextSize = 14
  123. TextButton_7.MouseButton1Down:connect(function()
  124. Frame_2.Visible = false
  125. Frame.Visible = true
  126. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement