updated friend strings

This commit is contained in:
Thomas G 2022-07-12 23:13:17 +10:00
parent ac22611275
commit 75d2e884bb
1 changed files with 4 additions and 4 deletions

View File

@ -71,9 +71,9 @@ game.Players.FriendRequestEvent:connect(function(fromPlayer,toPlayer,event)
if fromPlayer == localPlayer then if fromPlayer == localPlayer then
if event == Enum.FriendRequestEvent.Accept then if event == Enum.FriendRequestEvent.Accept then
game:GetService("GuiService"):SendNotification("Frined Joined", game:GetService("GuiService"):SendNotification("New Friend",
toPlayer.Name, fromPlayer.Name .. " is now your friend!",
"http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(toPlayer.userId).."&x=48&y=48", "http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(fromPlayer.userId).."&x=48&y=48",
5, 5,
function() function()
@ -90,7 +90,7 @@ game.Players.FriendRequestEvent:connect(function(fromPlayer,toPlayer,event)
makeFriend(fromPlayer,toPlayer) makeFriend(fromPlayer,toPlayer)
end) end)
elseif event == Enum.FriendRequestEvent.Accept then elseif event == Enum.FriendRequestEvent.Accept then
game:GetService("GuiService"):SendNotification("Friend Request Accepted", game:GetService("GuiService"):SendNotification("New Friend",
fromPlayer.Name .. " is now your friend!", fromPlayer.Name .. " is now your friend!",
"http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(fromPlayer.userId).."&x=48&y=48", "http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(fromPlayer.userId).."&x=48&y=48",
5, 5,