Advertisement
Guest User

Chaos script

a guest
Dec 19th, 2022
1,741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. local Number = 46
  2.  
  3.  
  4.  
  5. local walkSpeed = 16
  6.  
  7. local gmt = getrawmetatable(game)
  8.  
  9. setreadonly(gmt, false)
  10.  
  11. local oldindex = gmt.index
  12.  
  13. gmt.index = newcclosure(function(self,b)
  14.  
  15. if b == "WalkSpeed" then
  16.  
  17. return 16
  18.  
  19. end
  20.  
  21. return oldindex(self,b)
  22.  
  23. end)
  24.  
  25. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
  26.  
  27. _G.HeadSize = 30
  28. _G.Disabled = true
  29.  
  30. game:GetService('RunService').RenderStepped:connect(function()
  31. if _G.Disabled then
  32. for i,v in next, game:GetService('Players'):GetPlayers() do
  33. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  34. pcall(function()
  35. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  36. v.Character.HumanoidRootPart.Transparency = 0.7
  37. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  38. v.Character.HumanoidRootPart.Material = "Neon"
  39. v.Character.HumanoidRootPart.CanCollide = false
  40. end)
  41. end
  42. end
  43. end
  44. end)
  45.  
  46. game.Players.LocalPlayer.UserId = "2205774994"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement