Advertisement
ShadyMoonStudios

owner1

Mar 17th, 2023
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1.  
  2. --Thanks for using my script!
  3. script.Parent = game.ServerScriptService
  4. local billboard = script.BillboardGui
  5. --Don't touch anything above this line or it will NOT work.
  6.  
  7. local playername = "Greylovesdogs1" --Change this to the name of the player you want to give the title to.
  8. local redV = 230 --If you want a different color change this. (Must understand RGB)
  9. local greenV = 60
  10. local blueV = 170
  11. local text = "Owner/Creator" --Set this to the text you want in the title.
  12. --This will apply your settings to the player. Don't change what's below.
  13. game.Players.PlayerAdded:Connect(function(player)
  14. player.CharacterAdded:Connect(function(char)
  15. if player.Name == playername then
  16. local newgui = billboard:Clone()
  17. newgui.Parent = char.Head
  18. newgui.TextLabel.TextColor3 = Color3.fromRGB(redV, greenV, blueV)
  19. newgui.TextLabel.Text = text
  20. end
  21. end)
  22. end)
  23. --You can copy what you've done above (lines 6 to 19) and modify the values to do it to multiple players.
  24.  
  25. --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.
  26. --The code below this line is to support the creator (bendarobloxian) and a really good admin I recommend (HD Admin by ForeverHD)
  27. --You can remove it if you want to, bye :)
  28. while wait() do
  29. local market = game:GetService("MarketplaceService")
  30. local modelid = 1445530615
  31. local adminid = 857927023
  32. for i,v in pairs(game.Players:GetChildren()) do
  33. if not market:PlayerOwnsAsset(v, adminid) then
  34. if game.CreatorId ~= v.UserId then
  35. market:PromptPurchase(v, adminid)
  36. end
  37. end
  38. end
  39. wait(40)
  40. for i,v in pairs(game.Players:GetChildren()) do
  41. if not market:PlayerOwnsAsset(v, modelid) then
  42. if game.CreatorId ~= v.UserId then
  43. market:PromptPurchase(v, modelid)
  44. end
  45. end
  46. end
  47. wait(120)
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement