Advertisement
C-H-4-0-S

Bapn modded

Mar 17th, 2024 (edited)
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. local InfiniteJumpEnabled = true
  2. game:GetService("UserInputService").JumpRequest:connect(function()
  3. if InfiniteJumpEnabled then
  4. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  5. end
  6. end)
  7.  
  8. local vu = game:GetService("VirtualUser")
  9. game:GetService("Players").LocalPlayer.Idled:connect(function()
  10. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  11. wait(1)
  12. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  13. end)
  14.  
  15. game.StarterGui:SetCore("SendNotification", {
  16. Title = "made by JN HH Gaming, modded by ★CH40S★";
  17.  
  18.  
  19. })
  20. wait(1)
  21. game.StarterGui:SetCore("SendNotification", {
  22. Title = "have fun killing with modded version";
  23. Text = "Enjoy but don't kill to much people"; -- what the text says (ofc)
  24. Duration = 60;
  25. })
  26. _G.HeadSize = 30
  27. _G.Disabled = true
  28.  
  29. game:GetService('RunService').RenderStepped:connect(function()
  30. if _G.Disabled then
  31. for i,v in next, game:GetService('Players'):GetPlayers() do
  32. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  33. pcall(function()
  34. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  35. v.Character.HumanoidRootPart.Transparency = 0.7
  36. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  37. v.Character.HumanoidRootPart.Material = "Neon"
  38. v.Character.HumanoidRootPart.CanCollide = false
  39. end)
  40. end
  41. end
  42. end
  43. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement