Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- i have no idae if this works and i do not care but this was broken so i tried to fix it and idk if the game updated and changed shit but project star is kinda ass and i have better things to do
- Script originally made by Don athan
- https://www.roblox.com/games/6573910231/Project-Star
- ]]
- for i, v in pairs(game.Workspace.Drops.Active:GetChildren()) do
- local BillboardGui= Instance.new("BillboardGui")
- BillboardGui.AlwaysOnTop = true
- BillboardGui.MaxDistance = 0
- BillboardGui.ExtentsOffset = Vector3.new(0, 3.5, 0)
- BillboardGui.Parent = v
- BillboardGui.Adornee = v
- local TextLabel = Instance.new("TextLabel")
- TextLabel.TextStrokeColor3 = Color3.new(11, 12, 79)
- TextLabel.TextColor3 = Color3.new(42, 255, 39)
- TextLabel.TextStrokeTransparency = 0
- TextLabel.BackroundTransparency = 1
- TextLabel.TextSize = 40
- TextLabel.Font = 43
- TextLabel.Text = v.Name
- TextLabel.Parent = BillboardGui
- end)
Advertisement
Add Comment
Please, Sign In to add comment