Advertisement
LemonJuicer

ROBLOX SCRIPT Every Second You Get +1 Health

Dec 20th, 2022 (edited)
3,264
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 2 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("LemonQuice +1 Health Hub", "Ocean")
  3.  
  4. -- Player
  5. local Player = Window:NewTab("Player")
  6. local PlayerSection = Player:NewSection("Player")
  7.  
  8. PlayerSection:NewButton("Admin Commands", "Infinite Yield", function()
  9. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  10. end)
  11.  
  12. PlayerSection:NewButton("Anti AFK", "Good for Auto Farming", function()
  13. wait(0.5)local ba=Instance.new("ScreenGui")
  14. local ca=Instance.new("TextLabel")local da=Instance.new("Frame")
  15. local _b=Instance.new("TextLabel")local ab=Instance.new("TextLabel")ba.Parent=game.CoreGui
  16. ba.ZIndexBehavior=Enum.ZIndexBehavior.Sibling;ca.Parent=ba;ca.Active=true
  17. ca.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)ca.Draggable=true
  18. ca.Position=UDim2.new(0.698610067,0,0.098096624,0)ca.Size=UDim2.new(0,304,0,52)
  19. ca.Font=Enum.Font.SourceSansSemibold;ca.Text="Anti Afk Kick Script"ca.TextColor3=Color3.new(0,1,1)
  20. ca.TextSize=22;da.Parent=ca
  21. da.BackgroundColor3=Color3.new(0.196078,0.196078,0.196078)da.Position=UDim2.new(0,0,1.0192306,0)
  22. da.Size=UDim2.new(0,304,0,107)_b.Parent=da
  23. _b.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)_b.Position=UDim2.new(0,0,0.800455689,0)
  24. _b.Size=UDim2.new(0,304,0,21)_b.Font=Enum.Font.Arial;_b.Text="Made by Henkie Frenkie"
  25. _b.TextColor3=Color3.new(1,1,1)_b.TextSize=20;ab.Parent=da
  26. ab.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)ab.Position=UDim2.new(0,0,0.158377379,0)
  27. ab.Size=UDim2.new(0,304,0,44)ab.Font=Enum.Font.ArialBold;ab.Text="Status: Script Started"
  28. ab.TextColor3=Color3.new(1,1,1)ab.TextSize=20;local bb=game:service'VirtualUser'
  29. game:service'Players'.LocalPlayer.Idled:connect(function()
  30. bb:CaptureController()bb:ClickButton2(Vector2.new())
  31. ab.Text="You went idle and ROBLOX tried to kick you but we reflected it!"wait(2)ab.Text="Script Re-Enabled"end)
  32. end)
  33.  
  34. PlayerSection:NewSlider("Walk Speed", "Go Fast", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  35. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  36. end)
  37.  
  38.  
  39. PlayerSection:NewSlider("Jump Power", "Go High", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  40. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  41. end)
  42. -- AUTO FARM
  43. local Farm = Window:NewTab("Auto Farm")
  44. local FarmSection = Farm:NewSection("Auto Farm")
  45.  
  46.  
  47. FarmSection:NewButton("Infinite Wins", "+25 Wins every 9 seconds (rejoin to stop)", function()
  48. while true do
  49. local x = 3032
  50. local y = 8
  51. local z = -2625
  52. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(x, y, z))
  53. wait(9)
  54. end
  55. end)
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement