Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local plr = game:service"Players".LocalPlayer;
- local tween_s = game:service"TweenService";
- local info = TweenInfo.new(1,Enum.EasingStyle.Quad);
- function tp(...)
- local tic_k = tick();
- local params = {...};
- local cframe = CFrame.new(params[1],params[2],params[3]);
- local tween,err = pcall(function()
- local tween = tween_s:Create(plr.Character["HumanoidRootPart"],info,{CFrame=cframe});
- tween:Play();
- end)
- if not tween then return err end
- end
- tp(77.12,105.76,-293.66);
Add Comment
Please, Sign In to add comment