DrakerMaker

Abylistc

Sep 15th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.14 KB | None | 0 0
  1. a = [[
  2. game.StarterGui:SetCore("SendNotification", {
  3. Title = "Abylistc";
  4. Text = "Welcome to Abylistc. Drake's OWN admin, but only used for Void SB. Prefix is - and say -cmds for a list of commands.";
  5. Icon = "http://www.roblox.com/asset/?id=1118316158";
  6. Duration = "10";
  7. })
  8. ]]
  9. NLS(a, owner.PlayerGui)
  10. local cmds = Instance.new("ScreenGui")
  11. local cmdlabel = Instance.new("TextLabel", cmds)
  12. local hint = Instance.new("ScreenGui")
  13. hint.Name = "AbylistcHint"..owner.Name
  14. local hintlabel = Instance.new("TextLabel", hint)
  15. cmdlabel.Text = [[
  16. All the commands are
  17. -kill (kills a player)
  18. -sit (trips a player)
  19. -re (loads a player)
  20. -fire (lights a player on fire)
  21. -smoke (smokes a player)
  22. -sparkles (sparkles a player)
  23. -ws (only applies to you)
  24. -ju (only applies to you)
  25. -exit (exits the guis you are on (especially this one.))
  26. -m (creates a message)
  27. -stop (stops the script)
  28. ]]
  29. cmdlabel.Font = "Legacy"
  30. cmdlabel.TextColor3 = Color3.new(255, 255, 255)
  31. cmdlabel.Size = UDim2.new(1, 0, 1, 0)
  32. cmdlabel.Position = UDim2.new(0, 0, 0, 0)
  33. cmdlabel.TextSize = 25
  34. cmdlabel.TextWrapped = true
  35. cmdlabel.BackgroundColor3 = Color3.new(0, 0, 0)
  36. cmdlabel.BackgroundTransparency = 0.5
  37. cmdlabel.TextColor3 = Color3.new(255, 255, 255)
  38. cmdlabel.BorderSizePixel = 0
  39. hintlabel.Font = "Legacy"
  40. hintlabel.TextColor3 = Color3.new(255, 255, 255)
  41. hintlabel.Size = UDim2.new(1, 0, 1, 0)
  42. hintlabel.Position = UDim2.new(0, 0, 0, 0)
  43. hintlabel.TextSize = 25
  44. hintlabel.TextWrapped = true
  45. hintlabel.BackgroundColor3 = Color3.new(0, 0, 0)
  46. hintlabel.BackgroundTransparency = 0.5
  47. hintlabel.TextColor3 = Color3.new(255, 255, 255)
  48. hintlabel.BorderSizePixel = 0
  49. owner.Chatted:connect(function(msg)
  50. if msg == "-cmds" then
  51. cmds.Parent = owner.PlayerGui
  52. end
  53. if msg:sub(1,2) == "-m" then
  54. for _,v in pairs(owner.Parent:GetChildren()) do
  55. local C = hint:Clone()
  56. C.Parent = v.PlayerGui
  57. C.TextLabel.Text = "{"..owner.Name.."}: "..msg:sub(4)
  58. end
  59. wait(3)
  60. for _,v in pairs(owner.Parent:GetChildren()) do
  61. if v.PlayerGui:FindFirstChild("AbylistcHint"..owner.Name) then
  62. v.PlayerGui["AbylistcHint"..owner.Name]:Destroy()
  63. end
  64. end
  65. end
  66. if msg == "-stop" then
  67. cmds:Destroy()
  68. script:Destroy()
  69. end
  70. if msg == "-exit" then
  71. cmds.Parent = nil
  72. end
  73. if msg == "-re" then
  74. owner:LoadCharacter(true)
  75. end
  76. if msg:sub(1,3) == "-re" then
  77. for i,v in pairs(owner.Parent:GetChildren()) do
  78. if v:IsA("Player") then
  79. local name = v.Name
  80. if string.find(name, msg:sub(5)) ~= nil then
  81. v:LoadCharacter(true)
  82. end
  83. if name == msg:sub(5) then
  84. v:LoadCharacter(true)
  85. end
  86. end
  87. end
  88. end
  89. if msg:sub(1,5) == "-kill" then
  90. for i,v in pairs(owner.Parent:GetChildren()) do
  91. if v:IsA("Player") then
  92. local name = v.Name
  93. if string.find(name, msg:sub(7)) ~= nil then
  94. v.Character:BreakJoints()
  95. end
  96. if name == msg:sub(7) then
  97. v.Character:BreakJoints()
  98. end
  99. end
  100. end
  101. end
  102. if msg:sub(1,4) == "-sit" then
  103. for i,v in pairs(owner.Parent:GetChildren()) do
  104. if v:IsA("Player") then
  105. local name = v.Name
  106. if string.find(name, msg:sub(6)) ~= nil then
  107. v.Character:FindFirstChildOfClass("Humanoid").Sit = true
  108. end
  109. if name == msg:sub(6) then
  110. v.Character:FindFirstChildOfClass("Humanoid").Sit = true
  111. end
  112. end
  113. end
  114. end
  115. if msg:sub(1,3) == "-ws" then
  116. owner.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = msg:sub(5)
  117. end
  118. if msg:sub(1,3) == "-ju" then
  119. owner.Character:FindFirstChildOfClass("Humanoid").JumpPower = msg:sub(5)
  120. end
  121. if msg:sub(1,9) == "-sparkles" then
  122. for i,v in pairs(owner.Parent:GetChildren()) do
  123. if v:IsA("Player") then
  124. local name = v.Name
  125. if string.find(name, msg:sub(11)) ~= nil then
  126. if v.Character:FindFirstChild("Torso") then
  127. Instance.new("Sparkles",v.Character.Torso)
  128. end
  129. if v.Character:FindFirstChild("UpperTorso") then
  130. Instance.new("Sparkles",v.Character.UpperTorso)
  131. end
  132. end
  133. if name == msg:sub(11) then
  134. if v.Character:FindFirstChild("Torso") then
  135. Instance.new("Sparkles",v.Character.Torso)
  136. end
  137. if v.Character:FindFirstChild("UpperTorso") then
  138. Instance.new("Sparkles",v.Character.UpperTorso)
  139. end
  140. end
  141. end
  142. end
  143. end
  144. if msg:sub(1,6) == "-smoke" then
  145. for i,v in pairs(owner.Parent:GetChildren()) do
  146. if v:IsA("Player") then
  147. local name = v.Name
  148. if string.find(name, msg:sub(8)) ~= nil then
  149. if v.Character:FindFirstChild("Torso") then
  150. Instance.new("Smoke",v.Character.Torso)
  151. end
  152. if v.Character:FindFirstChild("UpperTorso") then
  153. Instance.new("Smoke",v.Character.UpperTorso)
  154. end
  155. end
  156. if name == msg:sub(8) then
  157. if v.Character:FindFirstChild("Torso") then
  158. Instance.new("Smoke",v.Character.Torso)
  159. end
  160. if v.Character:FindFirstChild("UpperTorso") then
  161. Instance.new("Smoke",v.Character.UpperTorso)
  162. end
  163. end
  164. end
  165. end
  166. end
  167. if msg:sub(1,5) == "-fire" then
  168. for i,v in pairs(owner.Parent:GetChildren()) do
  169. if v:IsA("Player") then
  170. local name = v.Name
  171. if string.find(name, msg:sub(7)) ~= nil then
  172. if v.Character:FindFirstChild("Torso") then
  173. Instance.new("Fire",v.Character.Torso)
  174. end
  175. if v.Character:FindFirstChild("UpperTorso") then
  176. Instance.new("Fire",v.Character.UpperTorso)
  177. end
  178. end
  179. if name == msg:sub(7) then
  180. if v.Character:FindFirstChild("Torso") then
  181. Instance.new("Fire",v.Character.Torso)
  182. end
  183. if v.Character:FindFirstChild("UpperTorso") then
  184. Instance.new("Fire",v.Character.UpperTorso)
  185. end
  186. end
  187. end
  188. end
  189. end
  190. end)
Add Comment
Please, Sign In to add comment