bitchlasanga

Updated Roscripter Overhead UI

Aug 17th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. local TweenService = game:GetService("TweenService")
  2. local MarketPlaceService = game:GetService("MarketplaceService")
  3.  
  4. local gamePassId = 11217080 --REPLACE THIS WITH YOUR GAMEPASSID
  5. local groupId = 2524000 --REPLACE THIS WITH YOUR GROUPID
  6.  
  7. game.Players.PlayerAdded:Connect(function(Player)
  8. Player.CharacterAdded:Connect(function(Character)
  9. local GuiClone = script.OverheadGui:Clone()
  10. GuiClone.Parent = Character.Head
  11.  
  12. local InformationLabel = GuiClone.InformationLabel
  13. local PlayerRank = Player:GetRoleInGroup(groupId)
  14.  
  15. if Player.Name == "Dev_Surfer" then
  16. while true do
  17. InformationLabel.Text = "[DEV] " .. Player.Name .. " - " .. PlayerRank
  18. local Color = Color3.new(math.random(), math.random(), math.random())
  19. local ColorTween = TweenService:Create(InformationLabel, TweenInfo.new(3), {TextColor3 = Color})
  20. ColorTween:Play()
  21. wait(3)
  22. end
  23. end
  24. if Player.Name == "ahtlas" then
  25. while true do
  26. InformationLabel.Text = "[DEV] " .. Player.Name .. " - " .. PlayerRank
  27. local Color = Color3.new(math.random(), math.random(), math.random())
  28. local ColorTween = TweenService:Create(InformationLabel, TweenInfo.new(3), {TextColor3 = Color})
  29. ColorTween:Play()
  30. wait(3)
  31. end
  32. end
  33. if Player.Name == "Libxra" then
  34. while true do
  35. InformationLabel.Text = "[DEV] " .. Player.Name .. " - " .. PlayerRank
  36. local Color = Color3.new(math.random(), math.random(), math.random())
  37. local ColorTween = TweenService:Create(InformationLabel, TweenInfo.new(3), {TextColor3 = Color})
  38. ColorTween:Play()
  39. wait(3)
  40. end
  41. end
  42. if Player.Name == "runnerman602" then
  43. while true do
  44. InformationLabel.Text = "[DEV] " .. Player.Name .. " - " .. PlayerRank
  45. local Color = Color3.new(math.random(), math.random(), math.random())
  46. local ColorTween = TweenService:Create(InformationLabel, TweenInfo.new(3), {TextColor3 = Color})
  47. ColorTween:Play()
  48. wait(3)
  49. end
  50. end
  51. if Player.Name == "Theman15301530" then
  52. while true do
  53. InformationLabel.Text = "[DEV] " .. Player.Name .. " - " .. PlayerRank
  54. local Color = Color3.new(math.random(), math.random(), math.random())
  55. local ColorTween = TweenService:Create(InformationLabel, TweenInfo.new(3), {TextColor3 = Color})
  56. ColorTween:Play()
  57. wait(3)
  58. end
  59. end
  60. if MarketPlaceService:UserOwnsGamePassAsync(Player.UserId, gamePassId) then
  61. while true do
  62. InformationLabel.Text = "[VIP] " .. Player.Name .. " - " .. PlayerRank --you can edit the VIP here
  63. local Color = Color3.new(math.random(), math.random(), math.random())
  64. local ColorTween = TweenService:Create(InformationLabel, TweenInfo.new(3), {TextColor3 = Color})
  65. ColorTween:Play()
  66. wait(3)
  67. end
  68. else
  69. InformationLabel.Text = Player.Name .. " - " .. PlayerRank
  70. end
  71. end)
  72. end)
  73.  
  74. --Edited by gman
Advertisement
Add Comment
Please, Sign In to add comment