Advertisement
trixade

Untitled

Nov 27th, 2021
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.51 KB | None | 0 0
  1. --[[
  2.     This script works with; Synapse X, Script-Ware, Fluxus (If other executors support, let us know at discord.gg/3tbavgGaMP)
  3.     If there is an error with the script or you have a suggestion, let us know in our discord.
  4.    
  5. ]]
  6.  
  7. _G.outfits = {
  8.     {Name = "Brochacho", ID = "151675683.7449702628,1029025,2570215639,2570216445"};
  9.     {Name = "Eastern Brochacho", ID = "151675683.4398197509,1033722,2570215639,2570216445"};
  10.     {Name = "Western Brochacho", ID = "151675683.7449702628,4307246471,2570215639,2570216445,4307249081,4307264429"};
  11.     {Name = "Medieval Brochacho", ID = "151675683.4383940795,13386385,2832699137,2832700156,4267030909,2274742626.4384429792,215748322.2675785344"};
  12.     {Name = "Vietnam Brochacho", ID = "151675683.7449702628,3755349626,176718647,769164402"};
  13.     {Name = "Pirate Brochacho", ID = "151675683.7449702628,1028859,74970669,4262731024,20721256,812711544,809822273"};
  14.     {Name = "Hamaschacho", ID = "151675683.7449702628,7246508581,7246496750,5503629632,5496446998,6598676193,4566943042"};
  15. }
  16.  
  17. _G.commands = {
  18.     {name = "kill",info = "Kills Specific Player",func = function(args)
  19.         if GetPlr(args[1]) ~= nil and args ~= nil then
  20.             rape(GetPlr(args[1]))
  21.         end
  22.     end},
  23.     {name = "goto",info = "Teleports to Specific Player",func = function(args)
  24.         if GetPlr(args[1]) ~= nil and args ~= nil and IsValid(GetPlr(args[1])) then
  25.             Tween(GetPlr(args[1]).Character:GetPivot(),.3)
  26.         end
  27.     end},
  28.     {name = "rejoin",info = "Rejoins",func = function()
  29.         game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, game.JobId)
  30.     end},
  31.     {name = "view",info = "Views Specific Player",func = function(args)
  32.         if GetPlr(args[1]) ~= nil and args ~= nil and IsValid(GetPlr(args[1])) then
  33.             game:GetService("Workspace"):FindFirstChild("Camera").CameraSubject = GetPlr(args[1]).Character.Humanoid
  34.         end
  35.     end},
  36.     {name = "unview",info = "Unviews",func = function()
  37.         game:GetService("Workspace"):FindFirstChild("Camera").CameraSubject = LocalPlayer.Character.Humanoid
  38.     end},
  39. }
  40.  
  41. loadstring(game:HttpGet("https://raw.githubusercontent.com/GFXTI/d/main/Piano%20V2"))()
  42.  
  43. --[[ Functions
  44.     togglenote("Toggle Name",_G.yourtoggle)
  45.     jet() -- equips invis jet
  46.     semigod() -- semi gods
  47.     rape(Player) -- kills player
  48.     MeleeKill(Player) -- kills player with melee events
  49.     GunKill(Player) -- kills player if gun found
  50.     IsFlagged(Player) -- returns true if flagged
  51.     flagup() -- flags your player if able too
  52.     GetColorName(Player) --returns Red [if nametag is red], Purple [if semi godded], Orange [if flagged], White [if passive], Blue [if government role kinda]
  53.     magnitudeplrs(Player,Player,Range) -- returns true if in magnitude
  54.     CreateBulletHole(CFrame, Type) -- Types are [1,2,3,"C","LMF"]
  55.     HitMarker(Position,Damage) -- makes hitmarker on position and damage is the text
  56.     GetGun(Player) -- returns players gun or nil if no gun
  57.     GetTool(Player) -- returns player tool or nil if no tool
  58.     IsGun(Player) -- returns true if gun found
  59.     IsTool(Player) -- returns true if tool found
  60.     mpibself(Number) -- 1-22
  61.     IsSemiGodded(Player) -- returns true if semi godded
  62.     IsValid(Player) -- returns true if Player is in workspace
  63.     GetPlr(String) -- returns Player from string ex. ["pla" returns Player]
  64.     wallcheck(Player) -- returns true if not behind wall [uses camera:GetPartsObscuringTarget]
  65.     Tween(Cframe,speed)
  66.     sendnotification(String)
  67.     senderror(String)
  68.    
  69.     -- UI Libray, This is not my UI library.
  70.    
  71.     local example = lib.WindowTab('Example')
  72.  
  73.     local addon = example.SideTab("Add on")
  74.  
  75.     local showcase = addon.Section("Showcase")
  76.        
  77.     showcase.Slider("This is a Slider",
  78.     1, -- minimum
  79.     20, -- max
  80.     10, -- default
  81.     true, --precise [true == 1.28, false == 1]
  82.     function(a)
  83.         print(a)
  84.     end)
  85.        
  86.     showcase.Button("This is a Button",function()
  87.         print("button go rbrr")
  88.     end)
  89.  
  90.     showcase.Toggle("This is a Toggle", -- true or false (i do this for the save feature)
  91.     ,function(a)
  92.         print(a)
  93.     end)
  94.  
  95.     showcase.Box("This is a Text Box", --name
  96.     "Or is it?" -- Input box text
  97.      ,function(a)
  98.         print(a)
  99.      end)
  100.  
  101.      showcase.KeyBind("This is a Key Bind",
  102.      Enum.KeyCode.L, -- default key
  103.      function(a)
  104.         print(a)
  105.      end)
  106.  
  107.      showcase.Dropdown("This is a Dropdown",{"Item 1", "Item 2"},function(a)
  108.         print(a)
  109.      end)
  110.    
  111.    ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement