Advertisement
iVyperion

Sharkbite Scripts

Feb 23rd, 2020
3,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | None | 0 0
  1. -- TP outside of map
  2. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1016.15735, 732.656189, 773.6922, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3.  
  4. -- Auto TP outside map
  5. _G.AutoTP = true;
  6.  
  7. while _G.AutoTP and wait(10) do
  8.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1018.15735, 790.656189, 775.6922, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  9. end
  10.  
  11. -- Kill Shark HP bar (Visual)
  12. local string_1 = "Damage";
  13. local number_1 = 100;
  14. local Target = game:GetService("Workspace").Events.Gui.SharkOMeter;
  15. Target:FireServer(string_1, number_1);
  16.  
  17. -- Change Team
  18. local TeamC = "Shark" -- Survivor, Shark, Lobby
  19.  
  20. game.Players.LocalPlayer.TeamColor = game.Teams:FindFirstChild(TeamC).TeamColor
  21. game.Players.LocalPlayer.Team = TeamC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement