MODFINDER_STOCK_MODS

Untitled

Jun 28th, 2024
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. -- easy sb bypass src
  2. local player = game.Players.LocalPlayer
  3. local char = player.Character
  4. local tweenservice = game:GetService("TweenService")
  5. local TweenService = game:GetService("TweenService")
  6. local humanoid = char:FindFirstChildOfClass("Humanoid")
  7. local normalWalkSpeed = 16
  8. local boostedWalkSpeed = 100 -- change how much you want to sped
  9. local tweenDuration = 0.5
  10.  
  11. local cannonball = workspace:WaitForChild("CannonBallStuff")
  12.  
  13. local function anti_ragdoll()
  14. while wait(1) do
  15. if char:FindFirstChild("Ragdoll") then
  16. char:FindFirstChild("Ragdoll"):Destroy()
  17. else
  18. print("ragdoll removed")
  19. end
  20. if char:FindFirstChild("Ragdolled").Value == true then
  21. char:FindFirstChild("Ragdolled").Value = false
  22. end
  23. end
  24. end
  25.  
  26. local function bypass_speed_detection()
  27. if humanoid.MoveDirection.magnitude > 0 then
  28. local tweenInfo = TweenInfo.new(tweenDuration, Enum.EasingStyle.Linear, Enum.EasingDirection.Out)
  29. local propertyTween = {WalkSpeed = boostedWalkSpeed}
  30. local tween = TweenService:Create(humanoid, tweenInfo, propertyTween)
  31. tween:Play()
  32. else
  33. humanoid.WalkSpeed = normalWalkSpeed
  34. end
  35. end
  36.  
  37. local function change_username()
  38. -- used when recording exploits
  39. -- client sided
  40. local nametag = char:FindFirstChild("Head"):FindFirstChild("Nametag"):FindFirstChildOfClass("TextLabel")
  41. if player and char then
  42. nametag.Text = "SADDIGUP" -- change however you like!
  43. player.Name = "SADDIGUP" -- change however you like
  44. player.DisplayName = "SADDIGUP" -- change this also
  45. else
  46. return "player and character not found!"
  47. end
  48. end
  49.  
  50. local function anti_cannon_ball(part)
  51. if part.Name == "CannonBall" then
  52. part:Destroy()
  53. end
  54. end
  55.  
  56. local function voidwalk()
  57. local part = Instance.new("Part", workspace)
  58. part.Reflectance = 0
  59. part.Color = Color3.new(0.639216, 0.635294, 0.647059)
  60. part.Anchored = true
  61. part.CollisionGroupId = 0
  62. part.RightSurface = Enum.SurfaceType.Smooth
  63. part.Locked = false
  64. part.Material = Enum.Material.Plastic
  65. part.Archivable = true
  66. part.Size = Vector3.new(2048, 0.09999942779541016, 2048)
  67. part.BackSurface = Enum.SurfaceType.Smooth
  68. part.BottomSurface = Enum.SurfaceType.Inlet
  69. part.CanCollide = true
  70. part.LeftSurface = Enum.SurfaceType.Smooth
  71. part.Transparency = 0.3
  72. part.Name = "Part"
  73. part.CFrame = CFrame.new(-110.699997, -10, -151.350006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  74. part.FrontSurface = Enum.SurfaceType.Smooth
  75. part.TopSurface = Enum.SurfaceType.Studs
  76.  
  77. end
  78.  
  79. local function do_all()
  80. voidwalk()
  81. anti_ragdoll()
  82. anti_cannon_ball()
  83. bypass_speed_detection()
  84. end
  85.  
  86.  
  87.  
  88. game.Loaded:Connect(function()
  89. cannonball:FindFirstChild("CannonBalls").ChildAdded:Connect(anti_cannon_ball)
  90. humanoid.Move:Connect(bypass_speed_detection)
  91. do_all()
  92. end)
  93.  
  94. --[[
  95.  
  96. thanks for watching see you next time!
  97. made by SADDIGUP aka your boy PULSAROS
  98.  
  99. --]]
Advertisement
Add Comment
Please, Sign In to add comment