Hey Devs! Today I’ll show you a quick tutorial about SocialService. It is more popular than other unique features that I showed in my [Make your games more unique tutorials, but still it’s not used that much. Let’s start!
Introduction
SocialService allows other players to invite their friends by using PromptGameInvite function. You can also give the inviter a reward for inviting his friends to your game!
How to add it?
Make a button and add a local script.
Script:
local button = script.Parent
local SocialService = game:GetService("SocialService") -- We need to reference SocialService to invite other players.
local player = game.Players.LocalPlayer
button.MouseButton1Click:Connect(function()
SocialService:PromptGameInvite(player)
end)
That’s all!
It’s working!