Advertisement
Guest User

FE/NONFE

a guest
Oct 28th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.03 KB | None | 0 0
  1. if game.Workspace.FilteringEnabled == True then
  2.  
  3. print("Loading FE Cmds")
  4. local NOCLIP = false
  5. local JESUSFLY = false
  6. local SWIM = false
  7.  
  8. game:GetService('RunService').Stepped:connect(function()
  9. if NOCLIP then
  10. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  11. elseif JESUSFLY then
  12. game.Players.LocalPlayer.Character.Humanoid:ChangeState(12)
  13. elseif SWIM then
  14. game.Players.LocalPlayer.Character.Humanoid:ChangeState(4)
  15. end
  16. end)
  17.  
  18. _G.Rc7Notification = function(a,b,c)
  19. game:GetService("CoreGui"):WaitForChild("RobloxGui").SendNotification:Fire(a, b, "rbxassetid://331959655", c)
  20. end
  21.  
  22. local gPlayers = game:GetService("Players")
  23. local admin = gPlayers.LocalPlayer.Name
  24. local bannedplyrs = {}
  25.  
  26. local admins = {'Xeradius','AutumnsGift'} -- names here of people who have access to your commands! (Your name doesn't need to be in here.)
  27.  
  28. -- declare services / init stuff --
  29. local services={}
  30. local cmds={}
  31. local std={}
  32. function KICK(PLAYER_KICK)
  33. if PLAYER_KICK.Character:FindFirstChild('Humanoid') then
  34. local KICK_1 = Instance.new('SkateboardPlatform', PLAYER_KICK.Character)
  35. KICK_1.Name = ''
  36. KICK_1.CFrame = CFrame.new(math.random(-1000, 1000), 1000, math.random(-1000, 1000))
  37. KICK_1.CanCollide = false
  38. KICK_1.Transparency = 1
  39.  
  40. PLAYER_KICK.Character.Humanoid.WalkSpeed = 0
  41.  
  42. wait()
  43.  
  44. local WELD_1 = Instance.new('Weld', KICK_1)
  45. WELD_1.Name = ''
  46. WELD_1.Part0 = PLAYER_KICK.Character.Torso
  47. WELD_1.Part1 = KICK_1
  48. WELD_1.C0 = CFrame.new(0, -400, 0)
  49.  
  50. wait()
  51.  
  52. KICK_1.Anchored = true
  53. WELD_1:remove()
  54. end
  55. end
  56.  
  57.  
  58. local serverLocked = false
  59.  
  60. game.Players.PlayerAdded:connect(function(player)
  61. if serverLocked == true then
  62. player.CharacterAdded:connect(function()
  63. wait(2)
  64. KICK(player)
  65. end)
  66. end
  67. end)
  68. function FIX_LIGHTING()
  69. game.Lighting.Ambient = Color3.new(0.5, 0.5, 0.5)
  70. game.Lighting.Brightness = 1
  71. game.Lighting.GlobalShadows = true
  72. game.Lighting.Outlines = false
  73. game.Lighting.TimeOfDay = 14
  74. game.Lighting.FogEnd = 100000
  75. end
  76.  
  77. services.players=gPlayers
  78. services.lighting=game:GetService('Lighting')
  79. services.workspace=game:GetService('Workspace')
  80. services.events = {}
  81. local user = gPlayers.LocalPlayer
  82.  
  83. local cmdprefix=';'
  84. local scriptprefix='\\'
  85. local split=" "
  86.  
  87.  
  88. updateevents=function()
  89. for i,v in pairs(services.events) do services.events:remove(i) v:disconnect() end
  90. for i,v in pairs(gPlayers:players())do
  91. local ev = v.Chatted:connect(function(msg) do_exec(msg,v) end)
  92. services.events[#services.events+1] = ev
  93. end
  94. end
  95.  
  96. -- safazi's lib --
  97.  
  98. std.inTable=function(tbl,val)
  99. if tbl==nil then return false end
  100.  
  101. for _,v in pairs(tbl)do
  102. if v==val then return true end
  103. end
  104. return false
  105. end
  106.  
  107. std.out=function(str)
  108. print(str)
  109. end
  110.  
  111. std.list=function(tbl) --turns table into list with commas
  112. local str=''
  113. for i,v in pairs(tbl)do
  114. str=str..tostring(v)
  115. if i~=#tbl then str=str..', ' end
  116. end
  117. return str
  118. end
  119.  
  120. std.endat=function(str,val)
  121. local z=str:find(val)
  122. if z then
  123. return str:sub(0,z-string.len(val)),true
  124. else
  125. return str,false
  126. end
  127. end
  128.  
  129. std.first=function(str) return str:sub(1,1) end
  130.  
  131. isAdmin=function(name)
  132. if name==admin then
  133. return true
  134. elseif admins[name]==true then
  135. return true
  136. end
  137. return false
  138. end
  139.  
  140. gPlayers.PlayerAdded:connect(function(player)
  141. for i,v in pairs(bannedplyrs) do
  142. if player == v then player:Destroy() end
  143. end
  144. end)
  145.  
  146. local exec=function(str)
  147. spawn(function()
  148. local script, loaderr = loadstring(str)
  149. if not script then
  150. error(loaderr)
  151. else
  152. script()
  153. end
  154. end)
  155. end
  156.  
  157. local findCmd=function(cmd_name)
  158. for i,v in pairs(cmds)do
  159. if v.NAME:lower()==cmd_name:lower() or std.inTable(v.ALIAS,cmd_name:lower())then
  160. return v
  161. end
  162. end
  163. end
  164.  
  165. local getCmd=function(msg)
  166. local cmd,hassplit=std.endat(msg:lower(),split)
  167. if hassplit then
  168. return {cmd,true}
  169. else
  170. return {cmd,false}
  171. end
  172. end
  173.  
  174. local getprfx=function(strn)
  175. if strn:sub(1,string.len(cmdprefix))==cmdprefix then return{'cmd',string.len(cmdprefix)+1}
  176. elseif strn:sub(1,string.len(scriptprefix))==scriptprefix then return{'exec',string.len(scriptprefix)+1}
  177. end return
  178. end
  179.  
  180. local getArgs=function(str)
  181. local args={}
  182. local new_arg=nil
  183. local hassplit=nil
  184. local s=str
  185. repeat
  186. new_arg,hassplit=std.endat(s:lower(),split)
  187. if new_arg~='' then
  188. args[#args+1]=new_arg
  189. s=s:sub(string.len(new_arg)+string.len(split)+1)
  190. end
  191. until hassplit==false
  192. return args
  193. end
  194.  
  195. local function execCmd(str, plr)
  196. local s_cmd
  197. local a
  198. local cmd
  199. s_cmd = getCmd(str) --separate command from string using split {command name,arg bool (for arg system)}
  200. cmd = findCmd(s_cmd[1]) --get command object {NAME,DESC,{ALIASES},function(args)}
  201. if cmd == nil then return end
  202. a = str:sub(string.len(s_cmd[1]) + string.len(split) + 1)--start string "a" after command and split
  203. local args=getArgs(a)--gets us a nice table of arguments
  204.  
  205. pcall(function()
  206. cmd.FUNC(args, plr)
  207. end)
  208. end
  209.  
  210. function do_exec(str,plr)
  211. if not isAdmin(plr.Name)then return end
  212.  
  213. str=str:gsub('/e ','')--remove "/e " the easy way!
  214.  
  215. local t=getprfx(str)
  216. if t==nil then return end
  217. str=str:sub(t[2])
  218. if t[1]=='exec' then
  219. exec(str)
  220. elseif t[1]=='cmd' then
  221. execCmd(str, plr)
  222. end
  223. end
  224.  
  225. updateevents()
  226. _G.exec_cmd = execCmd
  227. --game.Players.LocalPlayer.Chatted:connect(doexec)
  228.  
  229. local _char=function(plr_name)
  230. for i,v in pairs(game.Players:GetChildren())do
  231. if v:IsA'Player'then
  232. if v.Name==plr_name then return v.Character end
  233. end
  234. end
  235. return
  236. end
  237.  
  238. local _plr=function(plr_name)
  239. for i,v in pairs(game.Players:GetChildren())do
  240. if v:IsA'Player'then
  241. if v.Name==plr_name then return v end
  242. end
  243. end
  244. return
  245. end
  246.  
  247. function addcmd(name,desc,alias,func)
  248. cmds[#cmds+1]=
  249. {
  250. NAME=name;
  251. DESC=desc;
  252. ALIAS=alias;
  253. FUNC=func;
  254. }
  255. end
  256.  
  257. local function getPlayer(name)
  258. local nameTable = {}
  259. name=name:lower()
  260. if name == "me" then
  261. return {admin}
  262. elseif name == "others" then
  263. for i,v in pairs(gPlayers:GetChildren()) do
  264. if v:IsA'Player'then
  265. if v.Name~=admin then
  266. nameTable[#nameTable+1]=v.Name
  267. end
  268. end
  269. end
  270. elseif name == "all" then
  271. for i,v in pairs(gPlayers:GetChildren()) do
  272. if v:IsA'Player'then
  273. nameTable[#nameTable+1]=v.Name
  274. end
  275. end
  276. else
  277. for i,v in pairs(gPlayers:GetChildren()) do
  278. local lname = v.Name:lower()
  279. local i,j = lname:find(name)
  280. if i == 1 then
  281. return {v.Name}
  282. end
  283. end
  284. end
  285. return nameTable
  286. end
  287.  
  288. -- commands --
  289.  
  290. addcmd('ff',"ff's a player",{},
  291. function(args)
  292. local players=getPlayer(args[1])
  293. for i,v in pairs(players)do
  294. local pchar=_char(v)
  295. Instance.new("ForceField", pchar)
  296. end
  297. end)
  298.  
  299. addcmd('noff',"unff's a player",{'unff'},
  300. function(args)
  301. local players=getPlayer(args[1])
  302. for i,v in pairs(players)do
  303. local pchar=_char(v)
  304. for j,v1 in pairs(pchar:GetChildren()) do
  305. if v1:IsA("ForceField") then
  306. v1:Destroy()
  307. end
  308. end
  309. end
  310. end)
  311.  
  312. addcmd('fire','set a player on fire',{},
  313. function(args)
  314. local players=getPlayer(args[1])
  315. for i,v in pairs(players)do
  316. local pchar=_char(v)
  317. Instance.new("Fire", pchar.Torso)
  318. end
  319. end)
  320.  
  321. addcmd('nofire','extinguish a player',{'unfire'},
  322. function(args)
  323. local players=getPlayer(args[1])
  324. for i,v in pairs(players)do
  325. local pchar=_char(v)
  326. for j,v1 in pairs(pchar.Torso:GetChildren()) do
  327. if v1:IsA("Fire") then
  328. v1:Destroy()
  329. end
  330. end
  331. end
  332. end)
  333.  
  334. addcmd('sp','give a player sparkles',{},
  335. function(args)
  336. local players=getPlayer(args[1])
  337. for i,v in pairs(players)do
  338. local pchar=_char(v)
  339. Instance.new("Sparkles", pchar.Torso)
  340. end
  341. end)
  342.  
  343. addcmd('nosp','remove sparkles from a player',{'unsp'},
  344. function(args)
  345. local players=getPlayer(args[1])
  346. for i,v in pairs(players)do
  347. local pchar=_char(v)
  348. for j,v1 in pairs(pchar.Torso:GetChildren()) do
  349. if v1:IsA("Sparkles") then
  350. v1:Destroy()
  351. end
  352. end
  353. end
  354. end)
  355.  
  356. addcmd('smoke','give a player smoke',{},
  357. function(args)
  358. local players=getPlayer(args[1])
  359. for i,v in pairs(players)do
  360. local pchar=_char(v)
  361. Instance.new("Smoke", pchar.Torso)
  362. end
  363. end)
  364.  
  365. addcmd('nosmoke','remove smoke from a player',{},
  366. function(args)
  367. local players=getPlayer(args[1])
  368. for i,v in pairs(players)do
  369. local pchar=_char(v)
  370. for j,v1 in pairs(pchar.Torso:GetChildren()) do
  371. if v1:IsA("Smoke") then
  372. v1:Destroy()
  373. end
  374. end
  375. end
  376. end)
  377.  
  378. addcmd('btools','gives a player btools',{},
  379. function(args)
  380. local players=getPlayer(args[1])
  381. if players ~= nil then
  382. for i, v in pairs(players) do
  383. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 2
  384. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 3
  385. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 4
  386. end
  387. end
  388. end)
  389.  
  390. addcmd('god','gods player',{},
  391. function(args)
  392. local players=getPlayer(args[1])
  393. for i,v in pairs(players)do
  394. local pchar=_char(v)
  395. if pchar then pchar.Humanoid.MaxHealth=math.huge end
  396. end
  397. end)
  398.  
  399. addcmd('sgod','silently gods player',{},
  400. function(args)
  401. local players=getPlayer(args[1])
  402. for i,v in pairs(players)do
  403. local pchar=_char(v)
  404. spawn(function()
  405. pchar.Humanoid.MaxHealth = 10000000
  406. wait()
  407. pchar.Humanoid.Health = 10000000
  408. end)
  409. end
  410. end)
  411.  
  412. addcmd('ungod','removes god from a player',{},
  413. function(args)
  414. local players=getPlayer(args[1])
  415. for i,v in pairs(players)do
  416. local pchar=_char(v)
  417. if pchar then
  418. pchar.Humanoid.MaxHealth=100
  419. pchar.Humanoid.Health=100
  420. end
  421. end
  422. end)
  423.  
  424. addcmd('heal','resets a players health',{},
  425. function(args)
  426. local players=getPlayer(args[1])
  427. for i,v in pairs(players)do
  428. local pchar=_char(v)
  429. if pchar then pchar.Humanoid.Health=pchar.Humanoid.MaxHealth;end
  430. end
  431. end)
  432.  
  433. addcmd('frz','freezes a player',{},
  434. function(args)
  435. local players = getPlayer(args[1])
  436. if players ~= nil then
  437. for i, v in pairs(players) do
  438. _char(v).Torso.Anchored = true
  439. end
  440. end
  441. end)
  442.  
  443. addcmd('thaw','freezes a player',{},
  444. function(args)
  445. local players = getPlayer(args[1])
  446. if players ~= nil then
  447. for i, v in pairs(players) do
  448. _char(v).Torso.Anchored = false
  449. end
  450. end
  451. end)
  452.  
  453. addcmd('kill','kills a player',{},
  454. function(args)
  455. local players=getPlayer(args[1])
  456. for i,v in pairs(players)do
  457. local pchar=_char(v)
  458. if pchar then pchar.Humanoid.MaxHealth=0;pchar.Humanoid.Health=0;end
  459. end
  460. end)
  461.  
  462. addcmd('sound','plays a sound',{},
  463. function(args)
  464. local function dels(instance)
  465. for i,v in pairs(instance:GetChildren())do
  466. if v:IsA'Sound'then v:Destroy()end
  467. dels(v)
  468. end
  469. end
  470. dels(workspace)
  471.  
  472. local c=args[1]or'stop'
  473. if std.inTable({'stop'},c:lower())then return end
  474. local s=Instance.new("Sound", workspace)
  475. s.Looped = true
  476. s.SoundId = "rbxassetid://"..c
  477. s.Volume=1
  478. s:Play() s.Name = "Musickek"
  479. end)
  480.  
  481. addcmd('explode','explode a player', {},
  482. function(args)
  483. local players=getPlayer(args[1])
  484. for i, v in pairs(players) do
  485. local char = _char(v)
  486. if char:FindFirstChild("Torso") then
  487. Instance.new("Explosion", char).Position = char.Torso.Position
  488. end
  489. end
  490. end)
  491.  
  492. addcmd('invis','make a player invisible',{},
  493. function(args)
  494. local players=getPlayer(args[1])
  495. for i, v in pairs(players) do
  496. for k, v2 in pairs(_char(v):GetChildren()) do
  497. if v2.className == "Part" then
  498. if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 1 end
  499. elseif v2.className == "Hat" then
  500. if v2:FindFirstChild("Handle") then
  501. v2.Handle.Transparency = 1
  502. end
  503. end
  504. if v2:FindFirstChild("face") then
  505. v2.face:Destroy()
  506. end
  507. end
  508. end
  509. end)
  510.  
  511. addcmd('vis','make a player visible',{},
  512. function(args)
  513. local players=getPlayer(args[1])
  514. for i, v in pairs(players) do
  515. for k, v2 in pairs(_char(v):GetChildren()) do
  516. if v2.className == "Part" then
  517. if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 0 end
  518. elseif v2.className == "Hat" then
  519. if v2:FindFirstChild("Handle") then v2.Handle.Transparency = 0 end
  520. end
  521. if v2:FindFirstChild("face") then
  522. v2.face:Destroy()
  523. end
  524. end
  525. end
  526. end)
  527.  
  528. addcmd('goto','go to a player',{},
  529. function(args)
  530. local players=getPlayer(args[1])
  531. if players ~= nil and _char(players[1]):FindFirstChild("HumanoidRootPart") then
  532. _char(admin).HumanoidRootPart.CFrame = _char(players[1]).HumanoidRootPart.CFrame
  533. end
  534. end)
  535.  
  536. addcmd('bring','bring a player to you',{},
  537. function(args)
  538. local players=getPlayer(args[1])
  539. for i,v in pairs(players) do
  540. if _char(v):FindFirstChild("HumanoidRootPart") then
  541. _char(v).HumanoidRootPart.CFrame = _char(admin).HumanoidRootPart.CFrame
  542. end
  543. end
  544. end)
  545.  
  546. addcmd('tp','teleport player 1 to player 2',{},
  547. function(args)
  548. local players1=getPlayer(args[1])
  549. local players2=getPlayer(args[2])
  550. if not players2[1] then return end
  551. for i,v in pairs(players1) do
  552. if _char(v):FindFirstChild("HumanoidRootPart") and _char(players2[1]):FindFirstChild("HumanoidRootPart") then
  553. _char(v).HumanoidRootPart.CFrame = _char(players2[1]).HumanoidRootPart.CFrame
  554. end
  555. end
  556. end)
  557.  
  558. addcmd('charapp','change a players appearance',{},
  559. function(args)
  560. local players=getPlayer(args[1])
  561. if not args[1]or not args[2]then return end
  562. local id=args[2]
  563. if players ~= nil then
  564. for i,v in pairs(players) do
  565. gPlayers[v].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..id
  566. if _char(v):FindFirstChild("Head") then
  567. _char(v).Head:Destroy()
  568. end
  569. end
  570. end
  571. end)
  572.  
  573. addcmd('ws','change a players walkspeed',{},
  574. function(args)
  575. local players=getPlayer(args[1])
  576. if not args[1]or not args[2]then return end
  577. local num=args[2]
  578. for i,v in pairs(players) do
  579. if _char(v):FindFirstChild("Humanoid") then
  580. _char(v).Humanoid.WalkSpeed=tonumber(num)
  581. end
  582. end
  583. end)
  584.  
  585. addcmd('time','change the time of day',{},
  586. function(args)
  587. if not args[1]then return end
  588. local time_=tonumber(args[1])
  589.  
  590. game.Lighting:SetMinutesAfterMidnight(time_*60)
  591. end)
  592.  
  593. addcmd('kick','kick a player',{},
  594. function(args)
  595. local players=getPlayer(args[1])
  596. for i,v in pairs(players) do
  597. gPlayers[v]:Destroy()
  598. end
  599. end)
  600.  
  601. addcmd('ban','ban a player',{},
  602. function(args)
  603. local players=getPlayer(args[1])
  604. for i,v in pairs(players) do
  605. bannedplyrs[#bannedplyrs+1]=v
  606. gPlayers[v]:Destroy()
  607. end
  608. end)
  609.  
  610. addcmd('unlockws','unlock the whole workspace',{},
  611. function(args)
  612. local function unlock(instance)
  613. for i,v in pairs(instance:GetChildren()) do
  614. if v:IsA("BasePart") then
  615. v.Locked = false
  616. end
  617. unlock(v)
  618. end
  619. end
  620. unlock(workspace)
  621. end)
  622.  
  623. addcmd('unanchorws','unanchor the whole workspace',{},
  624. function(args)
  625. local function unanchor(instance)
  626. for i,v in pairs(instance:GetChildren()) do
  627. if v:IsA("BasePart") then
  628. v.Anchored=false
  629. end
  630. unanchor(v)
  631. end
  632. end
  633. unanchor(workspace)
  634. end)
  635.  
  636. addcmd('hat','give player a hat ingame',{},
  637. function(args)
  638. if not args[1] or not args[2] then return end
  639. local players=getPlayer(args[1])
  640. local id=args[2]
  641. local hat = game:GetObjects("rbxassetid://"..id)[1]
  642. if hat:IsA("Hat") then
  643. for i,v in pairs(players) do
  644. hat:clone().Parent = _char(v)
  645. end
  646. end
  647. hat:Destroy()
  648. end)
  649.  
  650. addcmd('gear','give player a gear ingame',{},
  651. function(args)
  652. spawn(function()
  653. if not args[1] or not args[2] then return end
  654. local players=getPlayer(args[1])
  655. local id=args[2]
  656. local model = game:GetService("InsertService"):LoadAsset(id)
  657. for i,v in pairs(players) do
  658. for _,j in pairs(model:GetChildren()) do
  659. if j:IsA("Tool") then
  660. j:Clone().Parent = gPlayers[v].Backpack
  661. end
  662. end
  663. end
  664. model:Destroy()
  665. end)
  666. end)
  667.  
  668. addcmd('pstools','give player personal server tools',{},
  669. function(args)
  670. local players=getPlayer(args[1])
  671. for i,v in pairs(players) do
  672. gPlayers[v].PersonalServerRank = 240
  673. end
  674. end)
  675.  
  676. addcmd('skick','kicks a player by shutting them down, takes a few seconds',{},
  677. function(args)
  678. local players=getPlayer(args[1])
  679. for i,v in pairs(players) do
  680. spawn(function()
  681. gPlayers[v].PersonalServerRank = 240
  682. gPlayers[v].Backpack:WaitForChild("ClassicTool")
  683. gPlayers[v].PersonalServerRank = 0
  684. end)
  685. end
  686. end)
  687.  
  688. addcmd('admin','gives a player admin',{},
  689. function(args)
  690. if not args[1]then return end
  691. local players=getPlayer(args[1])
  692. table.foreach(players,function(k,v)
  693. admins[v]=true
  694. end)
  695. end)
  696.  
  697. addcmd('unadmin','removes a players admin',{},
  698. function(args)
  699. if not args[1] then return end
  700. local players=getPlayer(args[1])
  701. table.foreach(players,function(k,v)
  702. admins[v]=nil
  703. end)
  704. end)
  705.  
  706. addcmd('view','view player',{},
  707. function(args)
  708. local players=getPlayer(args[1])
  709. workspace.CurrentCamera.CameraSubject = game.Players[players[1]].Character
  710. end)
  711.  
  712. addcmd('noclip','noclips local player',nil,
  713. function(args,speaker)
  714. NOCLIP = true
  715. JESUSFLY = false
  716. SWIM = false
  717. end)
  718.  
  719. addcmd('clip','clips local player',nil,
  720. function(args,speaker)
  721. NOCLIP = false
  722. end)
  723. addcmd('jesusfly','jesusfly',nil,
  724. function(args,speaker)
  725. NOCLIP = false
  726. JESUSFLY = true
  727. SWIM = false
  728. end)
  729. addcmd('nofly','nofly',nil,
  730. function(args)
  731. JESUSFLY = false
  732. end)
  733. addcmd('swim','swim',nil,
  734. function(args)
  735. NOCLIP = false
  736. JESUSFLY = false
  737. SWIM = true
  738. end)
  739. addcmd('noswim','noswim',nil,
  740. function(args)
  741. SWIM = false
  742. end)
  743. addcmd('skybox','sky <id>',nil,
  744. function(args)
  745. for i,v in pairs(game.Lighting:GetChildren()) do
  746. if v:IsA('Sky') then
  747. v:remove()
  748. end
  749. end
  750. local ID = (args[1])
  751. local sky = Instance.new('Sky', game.Lighting)
  752. sky.SkyboxBk = 'rbxassetid://' .. ID
  753. sky.SkyboxDn = 'rbxassetid://' .. ID
  754. sky.SkyboxFt = 'rbxassetid://' .. ID
  755. sky.SkyboxLf = 'rbxassetid://' .. ID
  756. sky.SkyboxRt = 'rbxassetid://' .. ID
  757. sky.SkyboxUp = 'rbxassetid://' .. ID
  758. end)
  759. addcmd('shrek','shrek <p>',nil,
  760. function(args)
  761. local players = getPlayer(args[1])
  762. for i,v in pairs(players) do
  763. local pchar = gPlayers[v].Character
  764. for i,v in pairs(pchar:GetChildren()) do
  765. if v:IsA('Hat') or v:IsA('CharacterMesh') or v:IsA('Shirt') or v:IsA('Pants') then
  766. v:remove()
  767. end
  768. end
  769. for i,v in pairs(pchar.Head:GetChildren()) do
  770. if v:IsA('Decal') or v:IsA('SpecialMesh')then
  771. v:remove()
  772. end
  773. end
  774. if pchar:FindFirstChild('Shirt Graphic') then
  775. pchar['Shirt Graphic'].Archivable = false
  776. pchar['Shirt Graphic'].Graphic = ''
  777. end
  778. local mesh = Instance.new('SpecialMesh', pchar.Head)
  779. mesh.MeshType = 'FileMesh'
  780. pchar.Head.Mesh.MeshId = 'http://www.roblox.com/asset/?id=19999257'
  781. pchar.Head.Mesh.Offset = Vector3.new(-0.1, 0.1, 0)
  782. pchar.Head.Mesh.TextureId = 'http://www.roblox.com/asset/?id=156397869'
  783. local Shirt = Instance.new('Shirt', gPlayers[v].Character)
  784. local Pants = Instance.new('Pants', gPlayers[v].Character)
  785. Shirt.ShirtTemplate = 'rbxassetid://133078194'
  786. Pants.PantsTemplate = 'rbxassetid://133078204'
  787. end
  788. end)
  789. addcmd('ambient','ambient <n> <n> <n>',nil,
  790. function(args)
  791. game.Lighting.Ambient = Color3.new(args[1], args[2], args[3])
  792. end)
  793. addcmd('fetp','fetp',nil,
  794. function(args)
  795. local last_pos = game.Players.LocalPlayer.Character.Torso.CFrame
  796. for _, Player in pairs(game:GetService("Players"):GetChildren()) do
  797. if game.Workspace:findFirstChild(Player.Name) then
  798. local w = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  799. w.Part0 = w.Parent
  800. w.Part1 = Player.Character.Torso
  801. w.C0 = last_pos
  802. w.C1 = last_pos
  803. wait(0.1)
  804. w:Destroy()
  805. game.Players.LocalPlayer.Character.Torso.CFrame = last_pos
  806. end
  807. end
  808. wait(1)
  809. game.Players.LocalPlayer.Character.Torso.CFrame = last_pos
  810. end)
  811. addcmd('fogend','fogend <n>',nil,
  812. function(args)
  813. game.Lighting.FogEnd = args[1]
  814. end)
  815. addcmd('slock','serverlock',nil,
  816. function(args)
  817. serverLocked = true
  818. end)
  819.  
  820. addcmd('unslock','unserverlock',nil,
  821. function(args)
  822. serverLocked = false
  823. end)
  824. addcmd('fogend','fogend <n>',{},
  825. function(args)
  826. game.Lighting.FogEnd = args[1]
  827. end)
  828. addcmd('fogcolor','fogcolor <n> <n> <n>',{},
  829. function(args)
  830. game.Lighting.FogColor = Color3.new(args[1], args[2], args[3])
  831. end)
  832. addcmd('fixl','fixlighting',nil,
  833. function(args)
  834. FIX_LIGHTING()
  835. end)
  836. addcmd('particles','particles <p> <id>',{'pts'},
  837. function(args)
  838. local players = getPlayer(args[1])
  839. for i,v in pairs(players) do
  840. local pchar = gPlayers[v].Character
  841. for i,v in pairs(pchar.Torso:GetChildren()) do
  842. if v:IsA('ParticleEmitter') then
  843. v:remove()
  844. end
  845. end
  846. wait()
  847. Instance.new('ParticleEmitter', pchar.Torso).Texture = 'http://www.roblox.com/asset/?id=' .. args[2] - 1
  848. end
  849. end)
  850. addcmd('nuke','nuke <p>',nil,
  851. function(args)
  852. local players = getPlayer(args[1])
  853. for i,v in pairs(players) do
  854. local pchar = gPlayers[v].Character
  855. spawn(function()
  856. if gPlayers[v] and pchar and pchar:FindFirstChild('Torso') then
  857. local nuke = Instance.new('Part', game.Workspace)
  858. nuke.Name = 'nuke_seth'
  859. nuke.Anchored = true
  860. nuke.CanCollide = false
  861. nuke.FormFactor = 'Symmetric'
  862. nuke.Shape = 'Ball'
  863. nuke.Size = Vector3.new(1,1,1)
  864. nuke.BrickColor = BrickColor.new('New Yeller')
  865. nuke.Transparency = 0.5
  866. nuke.Reflectance = 0.2
  867. nuke.TopSurface = 0
  868. nuke.BottomSurface = 0
  869. nuke.Touched:connect(function (hit)
  870. if hit and hit.Parent then
  871. local boom = Instance.new('Explosion', game.Workspace)
  872. boom.Position = hit.Position
  873. boom.BlastRadius = 11
  874. boom.BlastPressure = math.huge
  875. end
  876. end)
  877. local CF = pchar.Torso.CFrame
  878. nuke.CFrame = CF
  879. for i = 1,333 do
  880. nuke.Size = nuke.Size + Vector3.new(3,3,3)
  881. nuke.CFrame = CF
  882. wait(1/44)
  883. end
  884. nuke:remove()
  885. end
  886. end)
  887. end
  888. end)
  889. addcmd('nonuke','nonuke',{'unnuke'},
  890. function(args)
  891. for i,v in pairs(game.Workspace:GetChildren()) do
  892. if v.Name == 'nuke_seth' then
  893. v:remove()
  894. end
  895. end
  896. end)
  897. _G.Rc7Notification("Done","RC7 Admin is fully initilizied",5)
  898. wait(5)
  899. if game.Workspace.FilteringEnabled == true then
  900. _G.Rc7Notification("Filtering","Fltering is Enabled",5)
  901. else
  902. _G.Rc7Notification("Filtering","Fltering is Disabled",5)
  903. end
  904.  
  905. print("Loaded FE Cmds")
  906.  
  907. wait(2)
  908.  
  909. print("Loading Remote Logger by [Rain] Autumn")
  910.  
  911. -- RemoteSpy for Intriga
  912. -- Written by Autumn on V3rmillion
  913.  
  914. local enabled = {
  915. -- Set any of these objects to false to stop logging them
  916. BindableEvent = true;
  917. BindableFunction = true;
  918. RemoteEvent = true;
  919. RemoteFunction = true;
  920. }
  921.  
  922. local ignore = {
  923. -- Any remotes matching the names listed below will be ignored
  924. SomeExampleRemote = true;
  925. UselessSpamRemote = true;
  926. ThisRemoteWillBeIgnored = true;
  927. BlahBlahBlahRemote = true;
  928. }
  929.  
  930. local meta,oldmeta = getrawmetatable(game),{}
  931. for i,v in next,meta do oldmeta[i] = v end
  932. function formatargs(args,showkeys)
  933. if #args == 0 then return "N/A" end
  934. local strargs = {}
  935. for k,v in next,args do
  936. local argstr = ""
  937. if type(v) == "string" then
  938. argstr = "\"" .. v .. "\""
  939. elseif type(v) == "table" then
  940. argstr = "{" .. formatargs(v,true) .. "}"
  941. else
  942. argstr = tostring(v)
  943. end
  944. if showkeys and type(k) ~= "number" then
  945. table.insert(strargs,k.."="..argstr)
  946. else
  947. table.insert(strargs,argstr)
  948. end
  949. end
  950. return table.concat(strargs, ", ")
  951. end
  952. local realmethods = {}
  953. realmethods.Fire = Instance.new("BindableEvent").Fire
  954. realmethods.Invoke = Instance.new("BindableFunction").Invoke
  955. realmethods.FireServer = Instance.new("RemoteEvent").FireServer
  956. realmethods.InvokeServer = Instance.new("RemoteFunction").InvokeServer
  957. meta.__index = function(t,k)
  958. if (k == "Fire" or k == "Invoke" or k == "FireServer" or k == "InvokeServer") and (enabled[t.ClassName] and not ignore[t.Name]) then
  959. return function(self,...)
  960. local args = {...}
  961. local ret = {realmethods[k](self,...)}
  962. warn(t.ClassName.." called!\nPath: "..t:GetFullName().."\n".."Args: "..formatargs(args).."\nReturn: "..formatargs(ret))
  963. return unpack(ret)
  964. end
  965. else
  966. return oldmeta.__index(t,k)
  967. end
  968. end
  969.  
  970. print("Loaded Remote Logger")
  971.  
  972. elseif game.Workspace.FilteringEnabled == False then
  973. print("Loading Rocky's Cmdscript")
  974. loadstring(game:GetObjects('rbxassetid://295850902')[1].Source)()
  975. print("Loaded Rocky's Cmdscript")
  976. print("Loading DEX V1")
  977. wait(4)
  978. loadstring(game:GetObjects("rbxassetid://515012304")[1].Source)()
  979. print("DEX V1 loaded")
  980.  
  981. print("Startup done, enjoy exploiting!")
  982.  
  983.  
  984. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement