Advertisement
NotSirMeme

Overheat bighitbox

Oct 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. game:GetService("RunService").RenderStepped:Connect(function()
  2. for i,v in pairs(game.Players:GetChildren()) do
  3. if v.Name ~= game.Players.LocalPlayer.Name then
  4. pcall(function()
  5. v.Character.HumanoidRootPart.Size = Vector3.new(20,20,20)
  6. v.Character.HumanoidRootPart.Material = "Neon"
  7. v.Character.HumanoidRootPart.Color = Color3.fromRGB(0, 255, 255)
  8. v.Character.HumanoidRootPart.Transparency = 0.7
  9. v.Character.HumanoidRootPart.CanCollide = false
  10. end)
  11. end
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement