The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Sauravware script pastebin roblox
By sauravware on 2024-09-22 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  local Window = Library.CreateLib("sauravware", "Ocean")
  3.  local Tab = Window:NewTab("player")
  4.  local Section = Tab:NewSection("movment")
  5.  Section:NewSlider("sauravspeedy", "toofastforu", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  6.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  7. end)
  8. Section:NewSlider("sauravfrog", "hes a frog", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  9.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  10. end)
  11. Section:NewToggle("infjump", "stfu", function(state)
  12. _G.infinjump = true
  13.  
  14. local Player = game:GetService("Players").LocalPlayer
  15. local Mouse = Player:GetMouse()
  16. Mouse.KeyDown:connect(function(k)
  17. if _G.infinjump then
  18. if k:byte() == 32 then
  19. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  20. Humanoid:ChangeState("Jumping")
  21. wait(0.1)
  22. Humanoid:ChangeState("Seated")
  23. end
  24. end
  25. end)
  26.  
  27. local Player = game:GetService("Players").LocalPlayer
  28. local Mouse = Player:GetMouse()
  29. Mouse.KeyDown:connect(function(k)
  30. k = k:lower()
  31. if k == "f" then
  32. if _G.infinjump == true then
  33. _G.infinjump = false
  34. else
  35. _G.infinjump = true
  36. end
  37. end
  38. end)
  39. end)
  40. Section:NewButton("fly", "buggy", function()
  41. repeat wait()
  42. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  43. local mouse = game.Players.LocalPlayer:GetMouse()
  44. repeat wait() until mouse
  45.   local plr = game.Players.LocalPlayer
  46.   local torso = plr.Character.Torso
  47.   local flying = true
  48.   local deb = true
  49.   local ctrl = {f = 0, b = 0, l = 0, r = 0}
  50.   local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  51.   local maxspeed = 50
  52.   local speed = 0
  53.  
  54.   function Fly()
  55.     local bg = Instance.new("BodyGyro", torso)
  56.     bg.P = 9e4
  57.     bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  58.     bg.cframe = torso.CFrame
  59.     local bv = Instance.new("BodyVelocity", torso)
  60.     bv.velocity = Vector3.new(0,0.1,0)
  61.     bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  62.     repeat wait()
  63.       plr.Character.Humanoid.PlatformStand = true
  64.       if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  65.         speed = speed+.5+(speed/maxspeed)
  66.         if speed > maxspeed then
  67.           speed = maxspeed
  68.         end
  69.       elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  70.         speed = speed-1
  71.         if speed < 0 then
  72.           speed = 0
  73.         end
  74.       end
  75.       if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  76.         bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  77.         lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  78.       elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  79.         bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  80.       else
  81.         bv.velocity = Vector3.new(0,0.1,0)
  82.       end
  83.       bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  84.     until not flying
  85.     ctrl = {f = 0, b = 0, l = 0, r = 0}
  86.     lastctrl = {f = 0, b = 0, l = 0, r = 0}
  87.     speed = 0
  88.     bg:Destroy()
  89.     bv:Destroy()
  90.     plr.Character.Humanoid.PlatformStand = false
  91.   end
  92.   mouse.KeyDown:connect(function(key)
  93.   if key:lower() == "e" then
  94.     if flying then flying = false
  95.   else
  96.     flying = true
  97.     Fly()
  98.   end
  99. elseif key:lower() == "w" then
  100.   ctrl.f = 1
  101. elseif key:lower() == "s" then
  102.   ctrl.b = -1
  103. elseif key:lower() == "a" then
  104.   ctrl.l = -1
  105. elseif key:lower() == "d" then
  106.   ctrl.r = 1
  107. end
  108. end)
  109. mouse.KeyUp:connect(function(key)
  110. if key:lower() == "w" then
  111.   ctrl.f = 0
  112. elseif key:lower() == "s" then
  113.   ctrl.b = 0
  114. elseif key:lower() == "a" then
  115.   ctrl.l = 0
  116. elseif key:lower() == "d" then
  117.   ctrl.r = 0
  118. end
  119. end)
  120. Fly()
  121. end)
  122. local Tab = Window:NewTab("extra")
  123. local Section = Tab:NewSection("extra")
  124. Section:NewButton("extra gui", "admin cmds", function()
  125. loadstring(game:HttpGet("https://pastebin.com/raw/wMagw9Cn", true))()
  126. end)
  127. Section:NewButton("extragui2", "utitliy gui", function()
  128. local s = loadstring(game:HttpGet(("https://raw.githubusercontent.com/kiko200000000/ME/main/README.MD"), true))()
  129. print(s)
  130. end)
  131. Section:NewButton("extragui3", "updated gui", function()
  132. loadstring(game:HttpGet("https://raw.githubusercontent.com/Hypious/Marine-Hub/main/Main"))()
  133. end)
  134.  
  135. Section:NewButton("extragui4", "sauravware admin", function()
  136. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/jLn0n/scripts/main/game-scripts/pl-cmds.lua"))()
  137. end)
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146. -----guns tab
  147. local Tab = Window:NewTab("guns")
  148. local Section = Tab:NewSection("sauravs strapped")
  149. Section:NewButton("Remington-870", "idk", function(v)
  150.  
  151. local args = {
  152.     [1] = workspace.Prison_ITEMS.giver:FindFirstChild("Remington 870").ITEMPICKUP
  153. }
  154.  
  155. workspace.Remote.ItemHandler:InvokeServer(unpack(args))
  156.  
  157. end)
  158. Section:NewButton("AK-47", "idk", function(v)
  159. local args = {
  160.     [1] = workspace.Prison_ITEMS.giver:FindFirstChild("AK-47").ITEMPICKUP
  161. }
  162.  
  163. workspace.Remote.ItemHandler:InvokeServer(unpack(args))
  164.  
  165. end)
  166. Section:NewButton("M9", "broidunno", function(v)  
  167.  
  168.  
  169. local args = {
  170.     [1] = workspace.Prison_ITEMS.giver.M9.ITEMPICKUP
  171. }
  172.  
  173. workspace.Remote.ItemHandler:InvokeServer(unpack(args))
  174.  
  175. end)



  • Recent Roblox Scripts