Advertisement
anphu04

Roblox find out culprit exploiter script

Nov 26th, 2019
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. for i,plr in pairs(game.Players:GetPlayers()) do
  2. if plr.Character:FindFirstChild("SelectionBox") then
  3. plr.Character.SelectionBox:Destroy()
  4. end
  5. if plr.Character:FindFirstChild("HumanoidRootPart") then
  6. if plr.Character.HumanoidRootPart:FindFirstChild("BillboardGui") then
  7. plr.Character.HumanoidRootPart.BillboardGui:Destroy()
  8. end
  9. end
  10. end
  11.  
  12. for i,plr in pairs(game.Players:GetPlayers()) do
  13. local selbox = Instance.new("SelectionBox")
  14. selbox.Adornee = plr.Character
  15. selbox.Parent = plr.Character
  16. local bill = Instance.new("BillboardGui")
  17. bill.Size = UDim2.new(5,0,2,0)
  18. bill.StudsOffset = Vector3.new(0,4,0)
  19. bill.LightInfluence = 0
  20. local lab = Instance.new("TextLabel")
  21. lab.Size = UDim2.new(1,0,1,0)
  22. lab.Text = plr.Name
  23. lab.TextScaled = true
  24. lab.Parent = bill
  25. bill.Parent = plr.Character.HumanoidRootPart
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement