RoScripter

Rank Manager Roblox Script

May 12th, 2020
33,080
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. local GlitchURL = "" --Place the glitch project URL inside of the quotes
  2.  
  3. function rankUser(UserId, RoleId)
  4.     game:GetService("HttpService"):GetAsync(GlitchURL .. "ranker?userid=" .. UserId .. "&rank=" .. RoleId)
  5. end
  6.  
  7. local UserId = 12345 --Replace 12345 with the users userid
  8. local RoleId = 255 --Replace 255 with the role id that you would like the user to be set to
  9.  
  10. rankUser(UserId, RoleId)
Add Comment
Please, Sign In to add comment