Advertisement
uor

project baki 2 (in works)

uor
May 21st, 2022 (edited)
945
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. -- New Loader
  2. repeat wait() until game:IsLoaded()
  3.  
  4. loadstring(game:HttpGet("https://raw.githubusercontent.com/LioK251/Scripts/main/"..game.PlaceId..".lua"))()
  5. -- Games : A Universal Day, A 0ne Piece Game, Demonfall, Project Baki 2, Reaper 2, Anime Rifts, Stand Upright: Rebooted.
  6.  
  7. local Players = game:GetService("Players")
  8. local Player = Players.LocalPlayer
  9.  
  10. local OldNameCall
  11. OldNameCall = hookmetamethod(game, "__namecall", function(...)
  12. local Self, Args = (...), ({select(2, ...)})
  13.  
  14. if getnamecallmethod() == "Kick" and Self == Player then
  15. return
  16. end
  17.  
  18. return OldNameCall(...)
  19. end)
  20.  
  21. game:GetService("RunService").RenderStepped:Connect(function()
  22. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 25
  23. end)
  24.  
  25. setting = settings().Network
  26. local Effect = Instance.new("ColorCorrectionEffect")
  27. Effect.Parent = game.Lighting
  28. Effect.Saturation = -1
  29. Effect.Brightness = 0
  30. Effect.Contrast = 0
  31.  
  32. toggle = false
  33.  
  34. Effect.Enabled = false
  35. function onKeyPress(inputObject, gameProcessedEvent)
  36. if inputObject.KeyCode == Enum.KeyCode.LeftAlt then
  37. if toggle == false then
  38. setting.IncomingReplicationLag = math.huge
  39. Effect.Enabled = true
  40. toggle = true
  41. else
  42. setting.IncomingReplicationLag = 0
  43. Effect.Enabled = false
  44. toggle = false
  45. end
  46. end
  47. end
  48. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  49.  
  50. game.Players.InfinitePowerYujiro.Data.Trainer.Value = "Raian"
  51.  
  52. _G.key = Enum.KeyCode.LeftControl -- Change to whatever if you don't know Keycode go to roblox api doc
  53.  
  54. loadstring(game:HttpGet("https://paste.gg/p/anonymous/cb1c7198b269449eb8a2cf8ced061bed/files/4a98e88f82ee47388b3030a7f000b34e/raw", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement