The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Grand Piece Online script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 14



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local function addESP(part, name)
  2.     local billBoard = Instance.new("BillboardGui", part)
  3.     billBoard.Name = "ESP"
  4.     billBoard.Size = UDim2.new(10,0, 10,0)
  5.     billBoard.AlwaysOnTop = true
  6.     local espFrame = Instance.new("Frame", billBoard)
  7.     espFrame.Size = UDim2.new(1,0, 1,0)
  8.     espFrame.BackgroundTransparency = 0.8
  9.     espFrame.BorderSizePixel = 0
  10.     espFrame.BackgroundColor3 = Color3.new(0, 255, 0)
  11.     local espText = Instance.new('TextLabel', espFrame)
  12.     espText.BackgroundTransparency = 1
  13.     espText.Size = UDim2.new(2,0,2,0)
  14.     espText.BorderSizePixel = 0
  15.     espText.TextSize = 10
  16.     espText.Text = name
  17.     espText.BackgroundTransparency = 1
  18. end
  19.  
  20. for i,v in pairs(game.Workspace.Islands:GetChildren()) do
  21.   if v.PrimaryPart then
  22.     addESP(v.PrimaryPart, v.Name)
  23.   end
  24. end