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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  for i,v in pairs(workspace.Bananas:GetChildren()) do
  2.    if v.Transparency == 0 then
  3.        a = Instance.new("BillboardGui", v)
  4.        a.Size = UDim2.new(0,20,0,20)
  5.        a.AlwaysOnTop = true
  6.        b = Instance.new("TextLabel", a)
  7.        b.Size = UDim2.new(0,20,0,20)
  8.        b.Text = "Banana"
  9.        b.BackgroundTransparency = 1
  10.        b.TextColor3 = Color3.fromRGB(255,255,255)
  11.        b.TextStrokeTransparency = 0
  12.    end
  13.    
  14.    v:GetPropertyChangedSignal("Transparency"):Connect(function()
  15.        v.BillboardGui:Destroy()
  16.    end)
  17. end