Advertisement
scriptingtales

Caseoh is gonna ban me for this

Mar 24th, 2024
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. local p = Instance.new("Part", workspace)
  2. local decal = Instance.new("Decal", p)
  3.  
  4. local Billboard = Instance.new("BillboardGui", p)
  5. local textLabel = Instance.new("TextLabel", Billboard)
  6.  
  7. p.CustomPhysicalProperties = PhysicalProperties.new(9.99 * 10^6, 4, 1)
  8.  
  9. Billboard.StudsOffset = Vector3.new(0, 5, 0)
  10. Billboard.MaxDistance = math.huge
  11.  
  12. Billboard.Size = UDim2.new(0, 200, 0, 50)
  13.  
  14. textLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  15. textLabel.TextStrokeTransparency = 0
  16. textLabel.BackgroundTransparency = 1
  17. textLabel.TextScaled = true
  18. textLabel.Text = "The picture is what made this part heavy"
  19. textLabel.Size = UDim2.new(1, 0, 1, 0)
  20.  
  21. decal.Texture = "rbxassetid://15905589038"
  22. p.Size = Vector3.new(4, 4, 4)
  23.  
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement