Advertisement
Artani

War Sim

Oct 10th, 2022 (edited)
1,879
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.37 KB | None | 0 0
  1. loadstring(game:HttpGet("https://pastebin.com/raw/pdge7rJp", true))()
  2.  
  3. AND
  4.  
  5. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  6. local Window = Library.CreateLib("Jazzy Scripts War Simulator  ", "GrapeTheme")
  7.  
  8. --MAIN
  9. local Main = Window:NewTab("Main")
  10. local MainSection = Main:NewSection("Main")
  11.  
  12.  
  13. MainSection:NewToggle("Super-Man", "Increase ur walkspeed and jump", function(state)
  14.     if state then
  15.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  16.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  17.     else
  18.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  19.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  20.     end
  21. end)
  22.  
  23.  
  24. MainSection:NewButton("Infinite Yield", "Admin Commands", function()
  25.     loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  26. end)
  27.  
  28. MainSection:NewButton("Infinite Jump", "You can jump as high as you want", function()
  29.     pcall(loadstring(game:HttpGet("https://pastebin.com/raw/2wgbZ6Xd")))
  30. end)
  31.  
  32.  
  33.  
  34. MainSection:NewButton("GodMode", "Makes U Invincible", function()
  35.     loadstring(game:HttpGet("https://pastebin.com/raw/FwfNEqYz", true))()
  36.  
  37. end)
  38.  
  39.     --LOCAL PLAYER
  40.     local Player = Window:NewTab("Player")
  41.     local PlayerSection = Player:NewSection("Player")
  42.  
  43.     PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
  44.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  45.     end)
  46.  
  47.     PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
  48.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  49.     end)
  50.  
  51.     PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
  52.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  53.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  54.     end)
  55.  
  56.  
  57.     --Other
  58.     local Other = Window:NewTab("Other")
  59.     local OtherSection = Other:NewSection("Other")
  60.  
  61.     OtherSection:NewButton("Chat Spoofer", "Lets you chat for other people", function()
  62.         loadstring(game:HttpGet(('https://pastebin.com/raw/djBfk8Li'),true))()
  63.     end)
  64.  
  65.     OtherSection:NewButton("Rejoin Server", "Rejoins The Server", function()
  66.         loadstring(game:HttpGet("https://pastebin.com/raw/1gtVMUz3"))()
  67.     end)
  68.  
  69.    
  70.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement