Similar to the one in Jailbreak. I've tried countless times and none of them worked. Not meaning to ask anyone for the script but could anyone possible guide me through it?
On contact with another player a UI will pop in (I've already made it and tweened it) The ui says "Hold E To Tag"
You should probably just check the distance between players instead of having each of their parts have a touched event and if you want it to be similar to jailbreak.
01 | local runService = game:GetService( "RunService" ) |
02 | local contextService = game:GetService( "ContextActionService" ) |
03 |
04 | local ply = game.Players.LocalPlayer |
05 | local char = ply.Character |
06 | local ui = ply.PlayerGui.TagUi --Assuming this is a ScreenGui |
07 |
08 | ply.CharacterAdded:connect( function (c) |
09 | char = c |
10 | end ) |
11 |
12 | function tweenUi() |
13 | --Put Code to tween your Ui and tag progress |
14 | end |
15 |