Advertisement
Guest User

TC2 OP GUI

a guest
Dec 4th, 2020
8,698
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.18 KB | None | 0 0
  1. Script 1 :
  2.  
  3. loadstring(game:HttpGet(('https://gist.githubusercontent.com/Trashjpg/18fc15fef948937de738d26a3ceb129f/raw/47a51f6e1eea173b9403b2a26b00483bb37aceb3/TC2d.lua'),true))()
  4.  
  5. Script 2 :
  6.  
  7. function getplrsname()
  8. for i,v in pairs(game:GetChildren()) do
  9. if v.ClassName == "Players" then
  10. return v.Name
  11. end
  12. end
  13. end
  14. local players = getplrsname()
  15. local plr = game[players].LocalPlayer
  16. coroutine.resume(coroutine.create(function()
  17. while  wait(1) do
  18. coroutine.resume(coroutine.create(function()
  19. for _,v in pairs(game[players]:GetPlayers()) do
  20. if v.Name ~= plr.Name and v.Character then
  21. v.Character.RightUpperLeg.CanCollide = false
  22. v.Character.RightUpperLeg.Transparency = 10
  23. v.Character.RightUpperLeg.Size = Vector3.new(15,15,15)
  24.  
  25. v.Character.LeftUpperLeg.CanCollide = false
  26. v.Character.LeftUpperLeg.Transparency = 10
  27. v.Character.LeftUpperLeg.Size = Vector3.new(15,15,15)
  28.  
  29. v.Character.HeadHB.CanCollide = false
  30. v.Character.HeadHB.Transparency = 10
  31. v.Character.HeadHB.Size = Vector3.new(15,15,15)
  32.  
  33. v.Character.HumanoidRootPart.CanCollide = false
  34. v.Character.HumanoidRootPart.Transparency = 10
  35. v.Character.HumanoidRootPart.Size = Vector3.new(15,15,15)
  36.  
  37. end
  38. end
  39. end))
  40. end
  41. end))
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement