Advertisement
Guest User

byp

a guest
Feb 23rd, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. local meta = debug.getmetatable(game)
  2. local newindex = meta.__newindex
  3. local namecall = meta.__namecall
  4. setreadonly(meta,false)
  5.  
  6. meta.__newindex = newcclosure(function(self,key,value)
  7. if checkcaller() then
  8. return newindex(self,key,value)
  9. end
  10. if self and self:IsA("Humanoid") then
  11. game.StarterGui:SetCore("ResetButtonCallback",true)
  12. if key == "WalkSpeed" then
  13. return 16
  14. end
  15. if key == "JumpPower" then
  16. return 0
  17. end
  18. if key == "HipHeight" then
  19. return 0
  20. end
  21. if key == "Health" then
  22. return
  23. end
  24. end
  25. if key == "CFrame" and self.Name == "Torso" or self.Name == "HumanoidRootPart" then
  26. return
  27. end
  28. return newindex(self,key,value)
  29. end)
  30.  
  31. meta.__namecall = newcclosure(function(self,...)
  32. local args = {...}
  33. local t = getnamecallmethod()
  34. if t == "BreakJoints" then
  35. return wait(9e9)
  36. end
  37. if t == "Kick" then
  38. return wait(9e9)
  39. end
  40. if t == "FireServer" then
  41. if self.Name == "lIII" or self.Parent.Name == "ReplicatedStorage" then
  42. return wait(9e9)
  43. end
  44. if args[1] == "hey" then
  45. return wait(9e9)
  46. end
  47. end
  48. return namecall(self,...)
  49. end)
  50. game.StarterGui:SetCore("SendNotification", {
  51. Title = "Axtarium.";
  52. Text = "Walkshoot activated.";
  53. Duration = 7;
  54. Callback = bindable;
  55. })
  56.  
  57.  
  58. end
  59. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement