FantasyGamer

Anonymous's admin commands

May 6th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. --[[
  2. \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  3. -\\Welcome to anonymous's Admin commands\\
  4. --\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  5. Commands:
  6. ;play ID
  7. ;GV--Gets visualizer
  8. ;loop toggle
  9. ;stop
  10. ;btools
  11. ;resume
  12. ;stop
  13. ;cbtools --Click Btools Bypass anti btools
  14. --Right to clone left to destroy
  15. --]]
  16. local plr = game.Players.fantasygamery
  17. local event = plr.Chatted
  18. local msg
  19. local folder
  20. local sound
  21. local hint = Instance.new("Hint", workspace)
  22. local commands = {";play ID", ";GV",";loop toggle",";stop",";btools",";resume",";cbtools",";inject"}
  23. function getvisualizer()
  24. --[[
  25. \\Visualizer creator : Anonymous5044
  26. --]]
  27. local char = plr.Character
  28. local head = char.Head
  29.  
  30. if head:FindFirstChild("MyAssIsSoCool") then
  31. head:FindFirstChild("MyAssIsSoCool"):Destroy()
  32. end
  33. local model = Instance.new("Model", head)
  34. _G.ball = Instance.new("Part", model)
  35. local ball = _G.ball
  36. _G.sound2 = _G.sound
  37. local sound = _G.sound2
  38. _G.light = Instance.new("PointLight", ball)
  39. local light = _G.light
  40. local force = Instance.new("BodyGyro",ball)
  41. --local id2 = "rbxassetid://"..id
  42.  
  43. --sound.SoundId = id2
  44. ball.Anchored = true
  45. model.Name = "MyAssIsSoCool"
  46. ball.CanCollide = false
  47. sound.Volume = 1
  48. ball.Shape = "Block"
  49. ball.BrickColor = BrickColor.new("Dark green")
  50. ball.Material = "Neon"
  51. local rot = 0
  52. while wait() do
  53. rot = rot+1
  54. local sp = sound.PlaybackLoudness/220
  55. --ball.BrickColor = BrickColor.Random()
  56. ball.CFrame = head.CFrame*CFrame.new(0,3,0)
  57. ball.Rotation = Vector3.new(rot+6,rot,rot)
  58. ball.Size = Vector3.new(sp,sp,sp)
  59. light.Range = sp+5
  60. light.Brightness = sp+3
  61.  
  62.  
  63. end
  64. if rot >= 50 then
  65. rot =0
  66. end
  67. end
  68.  
  69. function create()
  70. local folder = Instance.new("Folder", plr.PlayerGui)
  71. _G.sound = Instance.new("Sound", folder)
  72. end
  73. create()
  74.  
  75. function tools()
  76. local hammer = Instance.new("HopperBin", plr.Backpack)
  77. local grab = Instance.new("HopperBin", plr.Backpack)
  78. local clone = Instance.new("HopperBin", plr.Backpack)
  79. local btools = {hammer, grab, clone}
  80.  
  81. for i=1,3 do
  82. if i== 1 then
  83. local o = btools[i]
  84. btools[i].Name = "Hammer"
  85. o.BinType = "Hammer"
  86. o.TextureId = "rbxassetid://145360580"
  87. elseif i==2 then
  88. local o = btools[i]
  89. btools[i].Name = "Grab"
  90. o.BinType = "Grab"
  91. o.TextureId = "rbxassetid://270648006"
  92. elseif i ==3 then
  93. local o = btools[i]
  94. btools[i].Name = "Clone"
  95. o.BinType = "Clone"
  96. o.TextureId = "rbxassetid://321433365"
  97. end
  98. end
  99. end
  100.  
  101. function cbtools()
  102. local mouse = plr:GetMouse()
  103. local event1 = mouse.Button1Down
  104. local event2 = mouse.Button2Down
  105. event1:Connect(function()
  106. local obj = mouse.Target
  107. obj:Destroy()
  108. end)
  109.  
  110. event2:Connect(function()
  111. local target = mouse.Target
  112. local obj = target:Clone()
  113. print(obj.Parent)
  114. obj.CFrame = target.CFrame*CFrame.new(0,10,0)
  115. obj.Parent = target.Parent
  116. end)
  117.  
  118. end
  119.  
  120. event:Connect(function(msg)
  121. local msg = string.lower(msg)
  122. if string.sub(msg,1,6) == ";play " then
  123. local id = string.sub(msg,7)
  124. _G.sound.SoundId = "rbxassetid://"..id
  125. local Asset = game:GetService("MarketplaceService"):GetProductInfo(id)
  126. hint.Text = "Playing: "..Asset.Name
  127. _G.sound:Play()
  128. elseif string.sub(msg,1,7) == ";btools" then
  129. tools()
  130. elseif string.sub(msg,1,7) == ";loop toggle" then
  131. if sound.Loop == true then
  132. sound.Loop = false
  133. else sound.Loop = true
  134. end
  135. elseif string.sub(msg,1,8) == ";cbtools" then
  136. cbtools()
  137. elseif string.sub(msg,1,3) == ";gv" then
  138. getvisualizer()
  139. elseif string.sub(msg,1,5) == ";stop" then
  140. _G.sound:Stop()
  141. elseif string.sub(msg,1,7) == ";resume" then
  142. _G.sound:Resume()
  143. elseif string.sub(msg,1,5) == ";cmds" then
  144. for i=1, #commands do
  145. warn(commands[i])
  146. end
  147. elseif string.sub(msg,1,7) == ";inject" then
  148. require(563249998)
  149. end
  150. end)
Advertisement
Add Comment
Please, Sign In to add comment