Advertisement
PointlessThoughts

PointlessThoughts Sword Fighting Tournament Mini-Admin

Feb 25th, 2018
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. -- Sword Fighting Tournament Mini-Admin by PointlessThoughts
  2.  
  3. warn("Injecting...Please wait!")
  4.  
  5. _G.Vis = false
  6. spawn(function()
  7.     while wait(1) do
  8.         if(_G.Vis == true) then
  9.             game.ReplicatedStorage.SetVis:InvokeServer("1000000000000")
  10.         end
  11.     end
  12. end)
  13.  
  14. game:GetService("Players").LocalPlayer.Chatted:Connect(function(Message)
  15.    
  16.     if(Message:lower()==";load cmds") then
  17. warn("Commands Loaded... Current Commands: ;invis true, ;invis false")
  18.     elseif(Message:lower()==";invis true") then
  19.     _G.Vis = true
  20.     elseif(Message:lower()==";invis false") then
  21.         _G.Vis = false
  22.         for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  23.         if(v:IsA("BasePart"))then
  24.         v.Transparency = 0
  25.         end
  26.         end
  27.     end
  28. end)
  29. warn("PointlessThoughts Mini-Admin Loaded... Enjoy <3")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement