Advertisement
Sungmingamerpro13

TeleportData (STORY GAME V2.15)

Dec 2nd, 2023
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.38 KB | None | 0 0
  1. for _, player in pairs(game.Players:GetChildren()) do
  2.     spawn(function()
  3.         local NewGui = game.ServerStorage.Assets.GoodEnding:Clone()
  4.         NewGui.Parent = player.PlayerGui
  5.         wait(5)
  6.         local TeleportData = {
  7.             AddWins = true,
  8.             PlayerName = player.UserId
  9.         }
  10.         player.AddWins.Value = player.AddWins.Value + 1
  11.         TeleportService:Teleport(15504034964, player, TeleportData)
  12.     end)
  13. end
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement