Advertisement
MrSynpase

kill all script for for simple games

Jan 11th, 2021 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.83 KB | None | 0 0
  1. -- this script its not mine
  2. -- credits to the guy who did the script
  3. -- i dont know his discord or any social media
  4. -- if u want the loadstring loadstring(game:HttpGet('https://pastebin.com/raw/izFAwUFvRemoveMEEEEE', true))()
  5. -- remove RemoveMEEEE for loadstring to work
  6. local LP = game:GetService("Players").LocalPlayer
  7. while wait(0.1) do
  8. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  9. if v and v.Character and v ~= LP and v.Character:FindFirstChild("Head") then
  10. local hrp = v.Character:FindFirstChild("Head") --// I thought of using humanoidrootpart first but it works better with the head!
  11. hrp:BreakJoints()
  12. hrp.Transparency = 0
  13. hrp.BrickColor = v.TeamColor
  14. hrp.Anchored = true
  15. hrp.CanCollide = false
  16. pcall(function()
  17. hrp.CFrame = LP.Character.HumanoidRootPart.CFrame * CFrame.new(1,0,-3.5)
  18. end)
  19. end
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement