Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- -\\Welcome to anonymous's Admin commands\\
- --\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- Commands:
- ;play ID
- ;GV--Gets visualizer
- ;loop toggle
- ;stop
- ;btools
- ;resume
- ;stop
- ;cbtools --Click Btools Bypass anti btools
- --Right to clone left to destroy
- --]]
- local plr = game.Players.fantasygamery
- local event = plr.Chatted
- local msg
- local folder
- local sound
- local hint = Instance.new("Hint", workspace)
- local commands = {";play ID", ";GV",";loop toggle",";stop",";btools",";resume",";cbtools",";inject"}
- function getvisualizer()
- --[[
- \\Visualizer creator : Anonymous5044
- --]]
- local char = plr.Character
- local head = char.Head
- if head:FindFirstChild("MyAssIsSoCool") then
- head:FindFirstChild("MyAssIsSoCool"):Destroy()
- end
- local model = Instance.new("Model", head)
- _G.ball = Instance.new("Part", model)
- local ball = _G.ball
- _G.sound2 = _G.sound
- local sound = _G.sound2
- _G.light = Instance.new("PointLight", ball)
- local light = _G.light
- local force = Instance.new("BodyGyro",ball)
- --local id2 = "rbxassetid://"..id
- --sound.SoundId = id2
- ball.Anchored = true
- model.Name = "MyAssIsSoCool"
- ball.CanCollide = false
- sound.Volume = 1
- ball.Shape = "Block"
- ball.BrickColor = BrickColor.new("Dark green")
- ball.Material = "Neon"
- local rot = 0
- while wait() do
- rot = rot+1
- local sp = sound.PlaybackLoudness/220
- --ball.BrickColor = BrickColor.Random()
- ball.CFrame = head.CFrame*CFrame.new(0,3,0)
- ball.Rotation = Vector3.new(rot+6,rot,rot)
- ball.Size = Vector3.new(sp,sp,sp)
- light.Range = sp+5
- light.Brightness = sp+3
- end
- if rot >= 50 then
- rot =0
- end
- end
- function create()
- local folder = Instance.new("Folder", plr.PlayerGui)
- _G.sound = Instance.new("Sound", folder)
- end
- create()
- function tools()
- local hammer = Instance.new("HopperBin", plr.Backpack)
- local grab = Instance.new("HopperBin", plr.Backpack)
- local clone = Instance.new("HopperBin", plr.Backpack)
- local btools = {hammer, grab, clone}
- for i=1,3 do
- if i== 1 then
- local o = btools[i]
- btools[i].Name = "Hammer"
- o.BinType = "Hammer"
- o.TextureId = "rbxassetid://145360580"
- elseif i==2 then
- local o = btools[i]
- btools[i].Name = "Grab"
- o.BinType = "Grab"
- o.TextureId = "rbxassetid://270648006"
- elseif i ==3 then
- local o = btools[i]
- btools[i].Name = "Clone"
- o.BinType = "Clone"
- o.TextureId = "rbxassetid://321433365"
- end
- end
- end
- function cbtools()
- local mouse = plr:GetMouse()
- local event1 = mouse.Button1Down
- local event2 = mouse.Button2Down
- event1:Connect(function()
- local obj = mouse.Target
- obj:Destroy()
- end)
- event2:Connect(function()
- local target = mouse.Target
- local obj = target:Clone()
- print(obj.Parent)
- obj.CFrame = target.CFrame*CFrame.new(0,10,0)
- obj.Parent = target.Parent
- end)
- end
- event:Connect(function(msg)
- local msg = string.lower(msg)
- if string.sub(msg,1,6) == ";play " then
- local id = string.sub(msg,7)
- _G.sound.SoundId = "rbxassetid://"..id
- local Asset = game:GetService("MarketplaceService"):GetProductInfo(id)
- hint.Text = "Playing: "..Asset.Name
- _G.sound:Play()
- elseif string.sub(msg,1,7) == ";btools" then
- tools()
- elseif string.sub(msg,1,7) == ";loop toggle" then
- if sound.Loop == true then
- sound.Loop = false
- else sound.Loop = true
- end
- elseif string.sub(msg,1,8) == ";cbtools" then
- cbtools()
- elseif string.sub(msg,1,3) == ";gv" then
- getvisualizer()
- elseif string.sub(msg,1,5) == ";stop" then
- _G.sound:Stop()
- elseif string.sub(msg,1,7) == ";resume" then
- _G.sound:Resume()
- elseif string.sub(msg,1,5) == ";cmds" then
- for i=1, #commands do
- warn(commands[i])
- end
- elseif string.sub(msg,1,7) == ";inject" then
- require(563249998)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment