Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local teleport_table = {
- location1 = Vector3.new(-40.1499786, 6.39520884, 450.304626, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- }
- local tween_s = game:GetService('TweenService')
- local tweeninfo = TweenInfo.new(20,Enum.EasingStyle.Linear)
- local lp = game.Players.LocalPlayer
- function bypass_teleport(v)
- if lp.Character and
- lp.Character:FindFirstChild('HumanoidRootPart') then
- local cf = CFrame.new(v)
- local a = tween_s:Create(lp.Character.HumanoidRootPart,tweeninfo,{CFrame=cf})
- a:Play()
- end
- end
- bypass_teleport(teleport_table.location1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement