Advertisement
takuyahd

Script One Piece Open Seas DF ESP

Nov 3rd, 2019
1,181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. -- One Piece Open Seas DF ESP
  2. -- https://v3rmillion.net/showthread.php?tid=904961&highlight=One+Piece+Open+Seas
  3.  
  4. workspace.ChildAdded:connect(function()
  5. local a = workspace:getDescendants()
  6. for i=1,#a do
  7. if a[i].ClassName == "Tool" or a[i].Name == "Mask" then
  8. if not a[i]:findFirstChild("BillboardGui") then
  9. local BillboardGui = Instance.new("BillboardGui")
  10. local TextLabel = Instance.new("TextLabel")
  11. BillboardGui.Parent = a[i]
  12. BillboardGui.Active = true
  13. BillboardGui.AlwaysOnTop = true
  14. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  15. if a[i]:findFirstChild("Handle") then
  16. BillboardGui.Adornee = a[i].Handle
  17. end
  18. if a[i]:findFirstChild(a[i]) then
  19. BillboardGui.Adornee = a[i]:findFirstChild(a[i])
  20. end
  21. TextLabel.Parent = BillboardGui
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.BackgroundTransparency = 1
  24. TextLabel.BorderSizePixel = 0
  25. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  26. TextLabel.Font = Enum.Font.GothamBold
  27. TextLabel.FontSize = Enum.FontSize.Size14
  28. TextLabel.Text = a[i].Name
  29. if a[i]:findFirstChild("Handle") then
  30. TextLabel.TextColor3 = a[i].Handle.Color
  31. end
  32. if a[i]:findFirstChild(a[i]) then
  33. TextLabel.TextColor3 = a[i]:findFirstChild(a[i]).Color
  34. end
  35. TextLabel.TextSize = 14
  36. TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
  37. TextLabel.TextStrokeTransparency = 0
  38. end
  39. end
  40. end
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement