Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Thanks for using my script!
- script.Parent = game.ServerScriptService
- local billboard = script.BillboardGui
- --Don't touch anything above this line or it will NOT work.
- local playername = "dinocal5" --Change this to the name of the player you want to give the title to.
- local redV = 255 --If you want a different color change this. (Must understand RGB)
- local greenV = 0
- local blueV = 0
- local text = "Creator" --Set this to the text you want in the title.
- --This will apply your settings to the player. Don't change what's below.
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(char)
- if player.Name == playername then
- local newgui = billboard:Clone()
- newgui.Parent = char.Head
- newgui.TextLabel.TextColor3 = Color3.fromRGB(redV, greenV, blueV)
- newgui.TextLabel.Text = text
- end
- end)
- end)
- --You can copy what you've done above (lines 6 to 19) and modify the values to do it to multiple players.
- --Made by bendarobloxian. If you see this script created by anyone else, it's a copy. Please report them to roblox and message bendarobloxian about it.
- --The code below this line is to support the creator (bendarobloxian)
- --You can remove it if you want to, bye :)
- while wait() do
- local market = game:GetService("MarketplaceService")
- local modelid = 6458506
- for i,v in pairs(game.Players:GetChildren()) do
- if not market:PlayerOwnsAsset(v, modelid) then
- if game.CreatorId ~= v.UserId then
- market:PromptPurchase(v, modelid)
- end
- end
- end
- wait(120)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement