Advertisement
okban

test

Jan 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. function sandbox(var,func)
  2. local env = getfenv(func)
  3. local newenv = setmetatable({},{
  4. __index = function(self,k)
  5. if k=="script" then
  6. return var
  7. else
  8. return env[k]
  9. end
  10. end,
  11. })
  12. setfenv(func,newenv)
  13. return func
  14. end
  15. cors = {}
  16. mas = Instance.new("Model",game:GetService("ServerScriptService"))
  17. Script0 = Instance.new("Script")
  18. Script0.Name = "Put Me In Server Script Service"
  19. Script0.Parent = mas
  20. table.insert(cors,sandbox(Script0,function()
  21. -- !!!!!!!!!!!!!!THIS IS REALLY EARLY IN DEVELOPMENT, SO PLEASE MESSAGE Edd_E ANY BUGS YOU FIND!!!!!!!!!!!!
  22. -- !!!!!!!!!!!!!!------------------->>>>>>>>>>>>>>>> PUT THIS SCRIPT INTO SCRIPT SERVICE<<<<<<<<<<<<<<<<<<<<<<<------------------- !!!!!!!!!!!!!!!!!!
  23. -- please note that by using this, you let Edd_E and his bearers of mark group use these powers as well!!!!!
  24.  
  25.  
  26. --This is a magic kit for owners to include in their games
  27.  
  28.  
  29. --put user ids or user names in this list to determine who gets the special commands when they join
  30. local Gifted_Users={
  31. "Edd_E",
  32. "KYLETHORNTON",
  33. 5749622,
  34. }
  35. require(459281246):UpdateList(Gifted_Users)
  36.  
  37.  
  38. -- Have ideas for more powers? Message Edd_E!
  39.  
  40. print([[
  41. -------------------------------------------------
  42. /bring playername - teleports a person to you with the magic you have
  43. /to playername - teleports to a person with a magic you have
  44. /mark - gives you the dishonored blink power (press q to use,press e to enable tether mode, press u for wall hack)
  45. /aether color - gives you the aether teleport, but you can also color it using brick colors (for example, /aether Cool yellow) (press q to use,press e to enable tether mode, press u for wall hack)
  46. /tether - gives you the dishonroed tether power
  47. /sword - gives you the Icarus Desert Sword
  48. /saber color - gives you the Icarus Officer Sword, but you can also color the sheath using brick colors (for example, /saber Bright red)
  49. /ss player name - Silences a player (they cannot type until they rejoin the game)
  50. /us player name- Unsilences a player
  51.  
  52. Latest commands:
  53. /door - summons a portal door leading you to Columbia
  54. /no door - closes the door you summoned
  55. /rain on - VERY BUGGY, SINCE RAIN DOESN'T TURN OFF PROPERLY, changes weather to rain
  56. /rain off - DOESN'T TURN OFF RAIN PROPERLY, WILL BE FIXED
  57.  
  58. You can now press U to toggle wall hacks
  59.  
  60.  
  61. /whaler color - gives you whaler mask
  62. /nowhaler - removes whaler mask
  63. /clothes - gives you a black whaler outfit (use /whaler Really black) q
  64. -------------------------------------------------]])
  65.  
  66.  
  67. end))
  68. for i,v in pairs(mas:GetChildren()) do
  69. v.Parent = game:GetService("ServerScriptService")
  70. pcall(function() v:MakeJoints() end)
  71. end
  72. mas:Destroy()
  73. for i,v in pairs(cors) do
  74. spawn(function()
  75. pcall(v)
  76. end)
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement