Advertisement
Roblox_Lua_Scripts

xSkentilum by coolboy566556 [[Check my binary signature!]]

Jul 4th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.03 KB | None | 0 0
  1. --[[
  2.        __    __       ____     ______      _____      ______   __      __       ____     ____       ____     _____       ______      ____    __      __  ______     ______    ______  ______   ______     ______
  3.    \ \  / /      (    )   (_  __ \    / ___/     (_   _ \  ) \    / (      / ___)   / __ \     / __ \   (_   _)     (_   _ \    / __ \   ) \    / ( |  ___(    / ____(   / ____( |  ___(  |  ___(    / ____(
  4.    () \/ ()      / /\ \     ) ) \ \  ( (__         ) (_) )  \ \  / /      / /      / /  \ \   / /  \ \    | |         ) (_) )  / /  \ \   \ \  / /  | |__     / /       / /      | |__    | |__     / /      
  5.    / _  _ \     ( (__) )   ( (   ) )  ) __)        \   _/    \ \/ /      ( (      ( ()  () ) ( ()  () )   | |         \   _/  ( ()  () )   \ \/ /   |___ \   ( (_____  ( (_____  |___ \   |___ \   ( (_____  
  6.   / / \/ \ \     )    (     ) )  ) ) ( (           /  _ \     \  /       ( (      ( ()  () ) ( ()  () )   | |   __    /  _ \  ( ()  () )    \  /        \ \  (   ___ \ (   ___ \     \ \      \ \  (   ___ \
  7.  /_/      \_\   /  /\  \   / /__/ /   \ \___      _) (_) )     )(         \ \___   \ \__/ /   \ \__/ /  __| |___) )  _) (_) )  \ \__/ /      )(     _____) )  \ (___) ) \ (___) )_____) ) _____) )  \ (___) )
  8. (/          \) /__(  )__\ (______/     \____\    (______/     /__\         \____)   \____/     \____/   \________/  (______/    \____/      /__\    )_____/    \_____/   \_____/ )_____/  )_____/    \_____/
  9.                                                                                                                                                                                                              
  10.  
  11.  
  12. Also, if you don't think that i made those admin commands, then look up for that binary signature:
  13. 01100011 01101111 01101111 01101100 01100010 01101111 01111001 00110101 00110110 00110110 00110101 00110101 00110110
  14. --]]
  15.  
  16.  
  17. --[[LocalScript Properties]]--
  18. script.Name = "Ultimus X"
  19. script.Parent = game.Workspace
  20. ver = "1.0"
  21.  
  22. --[[Settings]]--
  23. local Admin_Username = "coolboy566556" -- Pull here any name you would like.
  24. local Computer_Name = "Optiplex 745 - Dell" -- Will help if you put your real PC name.
  25. local Int = true
  26. local Prefix = "-"
  27. local Bet = ";"
  28.  
  29. --[[Variables]]--
  30. wrk = game.Workspace
  31. lgt = game.Lighting
  32. plrs = game.Players
  33. local p = Prefix
  34. local b = Bet
  35.  
  36. --[[Adminisitrator Commands {The Script Itself.}]]--
  37. if Int then
  38.     local Intro = Instance.new("Message", wrk)
  39.         for n = 0, 250 do
  40.             Intro.Text = "xSkentilum Admin has been Loaded "..n.."%"
  41.             wait(0.1)
  42.         end
  43.     wait(1)
  44.     Intro:remove()
  45. end
  46.  
  47. function xSkentilum(c)
  48.     if string.sub(c, 1, 4) == p.."FF"..b or p.."ff"..b then
  49.         Instance.new("ForceField", plrs[string.sub(c, 5)].Character)
  50.     end
  51.    
  52.     if string.sub(c, 1, 5) == p.."Exe"..b or p.."exe".. then
  53.         loadstring(string.sub(c, 6))()
  54.         print("Your One-Line script has been executed successfully! ;D")
  55.     end
  56.  
  57.     if string.sub(c, 1, 5) == p.."God"..b or p.."god"..b then
  58.         plrs[string.sub(c, 6)].Character.Humanoid.MaxHealth = math.huge
  59.     end
  60.  
  61.     if string.sub(c, 1, 6) == p.."Play"..b or p.."play"..b
  62.         local snd = Instance.new("Sound", plrs[Admin_Username].Character.Torso)
  63.         snd.SoundId = "http://www.roblox.com/asset/?id="..string.sub(c, 7)
  64.     end
  65.  
  66.     if c == p.."Stop"..b or p.."stop"..b then
  67.         for i, v in pairs(plrs[Admin_Username].Character.Torso:GetChildren()) do
  68.             if v:IsA("Sound") then
  69.                 v:Destroy()
  70.             end
  71.         end
  72.     end
  73.  
  74.     if string.sub(c, 1, 6) == p.."NoFF"..b or p.."noFF"..b or p.."noff"..b or p.."Noff"..b then
  75.         for i, v in pairs(plrs[Admin_Username].Character.Torso:GetChildren()) do
  76.             if v:IsA("ForceField") then
  77.                 v:remove()
  78.             end
  79.         end
  80.     end
  81.  
  82.     if string.sub(c, 1, 9) == p.."Explode"..b or p.."explode"..b then
  83.         Instance.new("Explosion", plrs[Admin_Username].Character.Head)
  84.         Instance.new("Explosion", plrs[Admin_Username].Character.Torso)
  85.     end
  86.  
  87.     if string.sub(c, 1, 5) == p.."Msg"..b or p.."msg"..b then
  88.         local msg = Instance.new("Message", game.Workspace)
  89.         msg.Text = string.sub(c, 5)
  90.     end
  91. end
  92.  
  93. game.Players[Admin_Username].Chatted:connect(xSkentilum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement