-
Notifications
You must be signed in to change notification settings - Fork 18
editProfile
Ben edited this page Aug 16, 2022
·
1 revision
Changes the profile name.
TRP3_API.profile.editProfile(profileID, newName)
-
profileID
: The ID given to your profile by TRP3. -
newName
: The new name to give your profile.
Changes the name of your current profile to "Ghost"
local currentProfile = TRP3_API.profile.getPlayerCurrentProfileID()
local newName = "Ghost"
TRP3_API.profile.editProfile(currentProfile, newName)