nin ja legends kill -- Script created by sriino -- Discord: sriino -- Discord: https://discord.com/invite/FzYdamC4 -- Define the teleportation destination coordinates local teleportCoordinates = Vector3.new(26.14399528503418, 91245.5390625, 1.9745755195617676) -- Create variables to track teleportation state and connection local isTeleporting = false local teleportConnection -- Function to teleport a player to the defined coordinates nin ja legends kill PasteShr nin ja legends kill local function teleportPlayer(player) -- Check if the player is valid and has a character if player and player.Character then -- Set the player's character position to the teleport coordinates player.Character:SetPrimaryPartCFrame(CFrame.new(teleportCoordinates)) end end -- Function to handle button click events local function onButtonClick() nin ja legends kill PasteShr nin ja legends kill -- Toggle teleportation state isTeleporting = not isTeleporting if isTeleporting then -- Start teleportation if it's not already running -- Get all players in the game local players = game:GetService("Players"):GetPlayers() -- Create a connection to repeatedly teleport players every 0.1 seconds teleportConnection = game:GetService("RunService").Heartbeat:Connect(function(deltaTime) nin ja legends kill How to use it? nin ja legends kill -- Loop through each player and teleport them for _, player in ipairs(players) do teleportPlayer(player) end end) else -- Stop teleportation if it's currently running if teleportConnection then teleportConnection:Disconnect() teleportConnection = nil nin ja legends kill PasteShr nin ja legends kill end end end -- Create a Teleport GUI local teleportGui = Instance.new("ScreenGui") teleportGui.Name = "TeleportGui" teleportGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Create a button for teleportation nin ja legends kill PasteShr nin ja legends kill local teleportButton = Instance.new("TextButton") teleportButton.Name = "TeleportButton" teleportButton.Size = UDim2.new(0, 100, 0, 50) teleportButton.Position = UDim2.new(0.5, -50, 0.5, -25) teleportButton.Text = "Start Teleportation" teleportButton.Parent = teleportGui -- Connect the button click event to the teleportation function teleportButton.MouseButton1Click:Connect(onButtonClick) nin ja legends kill