Advertisement
Guest User

Cachorro's Gui PART 2

a guest
Apr 5th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.10 KB | None | 0 0
  1. -- CACHORRO'S GUI V2.0 SCRIPT (part 2)
  2.  
  3. wait(1.1)
  4. if game.Players.LocalPlayer.PlayerGui.Cachorro then
  5.     local A = Instance.new("TextButton")
  6.     local B = false
  7.     A.Parent = game.Players.LocalPlayer.PlayerGui.Cachorro.Frame
  8.     A.BackgroundColor3 = Color3.new(255,255,255)
  9.     A.BorderColor3 = Color3.new(0,0.5,1)
  10.     A.BorderSizePixel = 5
  11.     A.Position = UDim2.new(1.03,0,0.75,0)
  12.     A.Size = UDim2.new(1,0,0.25,0)
  13.     A.Text = "Click to find Hollows"
  14.     A.TextScaled = true
  15.     A.Font = Enum.Font.Arcade
  16.     A.MouseButton1Click:connect(function()
  17.         for i, v in pairs (game.Workspace.NPCs:GetChildren()) do
  18.             if v.Name == "Hollow" then
  19.                 A = Instance.new("BillboardGui")
  20.                 B = Instance.new("TextLabel")
  21.                 A.Parent = v.HumanoidRootPart
  22.                 B.Parent = A
  23.                 v.Name = "haquiado"
  24.                 A.AlwaysOnTop = true
  25.                 A.Size = UDim2.new(1,0,1,0)
  26.                 B.Size = UDim2.new(1,0,1,0)
  27.                 B.TextColor3 = Color3.new(255,255,255)
  28.                 B.TextStrokeTransparency = 0
  29.                 B.TextStrokeColor3 = Color3.new(255,0,0)
  30.                 B.Font = Enum.Font.Arcade
  31.                 B.Text = "HOLLOW"
  32.                 B.BackgroundTransparency = 1
  33.                 B.TextSize = 15
  34.             end
  35.         end
  36.     end)
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement