Advertisement
DreamGamer_real

ROBLOX Moderator title

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