PartX

dad

Feb 24th, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local PiggyNpc = game:GetService("Workspace").PeppaNPC.PiggyBot
  2.  
  3. local BillboardGui = Instance.new("BillboardGui")
  4. local Frame = Instance.new("Frame")
  5.  
  6. --Properties:
  7.  
  8. BillboardGui.Parent = PiggyNpc.HumanoidRootPart
  9. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10. BillboardGui.Active = true
  11. BillboardGui.AlwaysOnTop = true
  12. BillboardGui.LightInfluence = 1.000
  13. BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  14.  
  15. Frame.Parent = BillboardGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  17. Frame.BackgroundTransparency = 0.200
  18. Frame.Size = UDim2.new(0, 50, 0, 50)
Add Comment
Please, Sign In to add comment