Advertisement
SUUKIDIS_69

Roblox Script Those who remain GUI

Mar 4th, 2022
5,864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1.  
  2. GUI SCRIPT:
  3.  
  4.  
  5. _______________________________________________________________________________________________________________________________________
  6.  
  7. loadstring(game:HttpGet("https://raw.githubusercontent.com/yeerma/such/main/private.txt"))()
  8.  
  9.  
  10.  
  11.  
  12.  
  13. MOBS ESP:
  14.  
  15. _______________________________________________________________________________________________________________________________________
  16.  
  17. Visible = true -- Makes heads visible. Set to false to make the hitboxes invisible
  18. Size = 20 -- 3 will give you a slight amount of help with aiming, 5 and up should make all of your shots hit, and anything past 10 or so will allow you to kill zombies behind walls. I don't recommend setting this past 20 as you might get kicked by the anti-cheat.
  19.  
  20. local old
  21. old = hookfunction(getrawmetatable(game).__index, function(...)
  22. local self, k = ...
  23. if k == "Size" and self.Name == "HumanoidRootPart" then
  24. return Vector3.new(1, 2, 1)
  25. elseif k == "Size" and self.Name == "Head" then
  26. return Vector3.new(2, 1, 1)
  27. end
  28. return old(...)
  29. end)
  30.  
  31. while wait(1) do
  32. for i,v in next, workspace.Entities.Infected:GetDescendants() do
  33. if v:FindFirstChild("Head") and v:FindFirstChild("HumanoidRootPart") then
  34. pcall(function()
  35. v.Head.Size = Vector3.new(Size, Size, Size)
  36. v.Head.CanCollide = false
  37. v.Head.Material = Enum.Material.Neon
  38. v.Head.BrickColor = BrickColor.new("Really blue")
  39. v.HumanoidRootPart.Size = Vector3.new(Size - 1, Size - 1, Size - 1)
  40. v.HumanoidRootPart.CanCollide = false
  41. if Visible == true then
  42. v.Head.Transparency = 0.5
  43. else
  44. v.Head.Transparency = 1
  45. end
  46. end)
  47. end
  48. end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement