Tartenka

Untitled

Apr 6th, 2025 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. -- Script by @tartenka
  2. local player = game:GetService("Players").LocalPlayer
  3. local character = player.Character or player.CharacterAdded:Wait()
  4. local humanoid = character:WaitForChild("Humanoid")
  5.  
  6. -- Красивое оповещение
  7. local notification = Instance.new("ScreenGui")
  8. notification.Name = "TartenkaNotification"
  9. notification.Parent = game:GetService("CoreGui")
  10.  
  11. local frame = Instance.new("Frame")
  12. frame.Size = UDim2.new(0, 300, 0, 80)
  13. frame.Position = UDim2.new(1, -320, 1, -100)
  14. frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  15. frame.BorderSizePixel = 0
  16. frame.Parent = notification
  17.  
  18. local gradient = Instance.new("UIGradient")
  19. gradient.Color = ColorSequence.new({
  20. ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 85, 127)),
  21. ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 170, 0))
  22. })
  23. gradient.Rotation = 90
  24. gradient.Parent = frame
  25.  
  26. local label = Instance.new("TextLabel")
  27. label.Size = UDim2.new(1, -20, 1, -20)
  28. label.Position = UDim2.new(0, 10, 0, 10)
  29. label.Text = "⚡ TELEPORT ACTIVATED ⚡\nScript by @tartenka"
  30. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  31. label.Font = Enum.Font.GothamBold
  32. label.TextSize = 18
  33. label.BackgroundTransparency = 1
  34. label.TextStrokeTransparency = 0.7
  35. label.Parent = frame
  36.  
  37. task.delay(5, function()
  38. notification:Destroy()
  39. end)
  40.  
  41. -- Поиск цели
  42. local finishModel = workspace:FindFirstChild("Finish") or workspace:FindFirstChild("Finish", true)
  43. if not finishModel then
  44. warn("Модель Finish не найдена!")
  45. return
  46. end
  47.  
  48. local chest = finishModel:FindFirstChild("Chest") or finishModel:FindFirstChildOfClass("Part")
  49. if not chest then
  50. warn("Целевой парт не найден!")
  51. return
  52. end
  53.  
  54. -- Настройки телепорта
  55. local TELEPORT_SPEED = 2500
  56. local TELEPORT_DELAY = 0.01
  57.  
  58. -- Отключаем физику для плавности
  59. humanoid:ChangeState(Enum.HumanoidStateType.Physics)
  60. humanoid.PlatformStand = true
  61.  
  62. -- Основной цикл телепортации
  63. local teleportLoop
  64. teleportLoop = game:GetService("RunService").Heartbeat:Connect(function()
  65. if not character or not character.Parent then
  66. teleportLoop:Disconnect()
  67. return
  68. end
  69.  
  70. local hrp = character:FindFirstChild("HumanoidRootPart")
  71. if not hrp then return end
  72.  
  73. -- Мгновенный телепорт с эффектом скорости
  74. hrp.Velocity = (chest.Position - hrp.Position).Unit * TELEPORT_SPEED
  75. hrp.CFrame = CFrame.lookAt(hrp.Position, chest.Position)
  76.  
  77. -- Если близко к цели - точная посадка
  78. if (chest.Position - hrp.Position).Magnitude < 10 then
  79. hrp.CFrame = chest.CFrame * CFrame.new(0, 3, 0)
  80. end
  81. end)
  82.  
  83. -- Функция остановки
  84. _G.StopTartenkaTeleport = function()
  85. if teleportLoop then
  86. teleportLoop:Disconnect()
  87. humanoid.PlatformStand = false
  88. humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  89.  
  90. -- Оповещение об остановке
  91. local stopNotif = notification:Clone()
  92. stopNotif.Frame.TextLabel.Text = "✋ TELEPORT STOPPED ✋\nScript by @tartenka"
  93. stopNotif.Parent = game:GetService("CoreGui")
  94. task.delay(3, function() stopNotif:Destroy() end)
  95. end
  96. end
  97.  
  98. warn("TELEPORT ACTIVATED! Speed: 9999\nScript by @tartenka\nTo stop: StopTartenkaTeleport()")
Advertisement
Add Comment
Please, Sign In to add comment