Advertisement
BlueHasMeme

Untitled

Sep 5th, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local PChar = game.Players.LocalPlayer.Character
  2.  
  3. local h = Instance.new("Hint", game.Workspace)
  4. h.Text = "Blue's admin command loaded!"
  5.  
  6. local bbg = Instance.new("BillboardGui", PChar.Head)
  7. bbg.Size = UDim2.new(0, 200, 0, 50)
  8. bbg.Enabled = true
  9. local TxtLabel = Instance.new("TextLabel", PChar.Head.BillboardGui)
  10. TxtLabel.Name = "Say"
  11. TxtLabel.Text = "Blue's admin command has loaded"
  12. TxtLabel.Size = UDim2.new(0, 200, 0, 50)
  13. TxtLabel.Position = UDim2.new(0, 150, 0, 0)
  14. TxtLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  15. TxtLabel.BorderColor3 = Color3.new(0, 0, 0)
  16. TxtLabel.TextColor3 = Color3.new(158, 158, 158)
  17. wait(5)
  18. bbg:Destroy()
  19.  
  20.  
  21. game.Players.LocalPlayer.Chatted:connect(function(msg)
  22.         if msg == ";ff me" then
  23.                 Instance.new("ForceField", PChar)
  24.         elseif msg == ";kill me" then
  25.                 PChar.Torso:Destroy()
  26.         elseif msg == ";music megalovania" then
  27.                 local MegaSound = Instance.new("Sound", game.Workspace)
  28.                 MegaSound.SoundId = "http://www.roblox.com/asset/?id=304114750"
  29.                 MegaSound.Name = "Megalovania"
  30.                 MegaSound.Looped = true
  31.                 MegaSound:Play()
  32.         elseif msg == ";cmds" then
  33.                 local h = Instance.new("Message", game.Workspace)
  34.                 h.Text = "Please check output!"
  35.                 print ''
  36.                 print 'Blue's ADMIN COMMANDS LIST'
  37.                print ''
  38.                print '";ff me" for forcefield'
  39.                print ''
  40.                print '";kill me" to killed me'
  41.                print ''
  42.                print '";music megalovania" for megalovania undertale music'
  43.                print ''
  44.                print '";randomtorso me" to randomizing color torso'
  45.                print ''
  46.                print '";fart me" to fart xD'
  47.                print ''
  48.                print '";music stop" to stop the music'
  49.                print ''
  50.                print '";light me" to lighting'
  51.                print ''
  52.                print '";night" to night'
  53.                wait(2)
  54.                h:Destroy()
  55.        elseif msg == ";randomtorso me" then
  56.                PChar.Torso.BrickColor = BrickColor.Random()
  57.        elseif msg == ";fart me" then
  58.                local FartSound = Instance.new("Sound", PChar.Head)
  59.                FartSound.SoundId = "http://www.roblox.com/asset/?id=251309043"
  60.                FartSound:Play()
  61.                wait(3)
  62.                FartSound:Destroy()
  63.        elseif msg == ";music stop" then
  64.                game.Workspace.Megalovania:Stop()
  65.        elseif msg == ";light me" then
  66.                Instance.new("PointLight", PChar.Torso)
  67.        elseif msg == ";night" then
  68.                game.Lighting.TimeOfDay = "00:00:00"
  69.                game.Lighting.ShadowColor = Color3.new(24, 24, 25)
  70.                game.Lighting.OutdoorAmbient = Color3.new(66, 66, 66)
  71.        elseif msg then
  72.                 local bbg = Instance.new("BillboardGui", PChar.Head)
  73.                 bbg.Size = UDim2.new(0, 200, 0, 50)
  74.                 bbg.Enabled = true
  75.                 local TxtLabel = Instance.new("TextLabel", PChar.Head.BillboardGui)
  76.                 TxtLabel.Name = "Say"
  77.                 TxtLabel.Text = msg
  78.                 TxtLabel.Size = UDim2.new(0, 200, 0, 50)
  79.                 TxtLabel.Position = UDim2.new(0, 150, 0, 0)
  80.                 TxtLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  81.                 TxtLabel.BorderColor3 = Color3.new(0, 0, 0)
  82.                 TxtLabel.TextColor3 = Color3.new(158, 158, 158)
  83.                 wait(5)
  84.                 bbg:Destroy()
  85.            elseif PChar.Humanoid == 0 then --and then dead to go back!
  86.                 wait(7)
  87.                 script:Clone()
  88.        end
  89. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement