OrdinaryScripter

Eletric State Script

Oct 25th, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 65.90 KB | None | 0 0
  1.  
  2. --ALL CREDIT TO ORIGNAL OWNERS I DID NOT MAKE ANY OF THIS
  3. local variables = {}
  4.  
  5. variables.autoCornFarm = false;
  6. variables.hitboxexpand = false;
  7. variables.killmethodgun = false;
  8. variables.autoAureus = false;
  9. variables.autoScavEnabled = false;
  10. variables.autoPrinterFarm = false;
  11. variables.deathBarrierBypassEnabled = false;
  12. variables.version = "1.0";
  13. variables.globRainbowColor3 = nil;
  14.  
  15. _G.deathBarrierBypassEnabled = false;
  16. _G.weaponMultiplierEnabled = false;
  17.  
  18. -- auto corn
  19.  
  20. function autoCornFarmRun()
  21. if variables.autoCornFarm then
  22. hasFoundCargoStation = false;
  23. pcall(function()
  24. if game:GetService("Workspace").Buildings[game.Players.LocalPlayer.Name]["Capital Cargo Station"].Name == "Capital Cargo Station" then
  25. hasFoundCargoStation = true;
  26. end
  27. end)
  28. if hasFoundCargoStation then
  29. pcall(function()
  30. cargoStation = game:GetService("Workspace").Buildings[game.Players.LocalPlayer.Name]["Capital Cargo Station"];
  31. for i,v in pairs(game:GetService("Workspace").Buildings[game.Players.LocalPlayer.Name]:GetChildren()) do
  32. pcall(function()
  33. if v.Name == "Corn Farm" or v.Name == "Tomato Farm" or v.Name == "Carrot Farm" then
  34. if v["3"].Transparency == 0 then
  35. pcall(function()
  36. -- ready for harvest
  37. local cFrameRn = nil;
  38. cFrameRn = CFrame.new(Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z));
  39. local controls = require(game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule):GetControls()
  40. controls:Disable();
  41. pcall(function()
  42. wait(1);
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v["3"].CFrame;
  44. wait(1);
  45. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(40, v);
  46. wait(1);
  47. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(40, v);
  48. wait(1);
  49. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = cargoStation.Union.CFrame;
  50. wait(1);
  51. corn = nil;
  52. for i1, v1 in pairs(game:GetService("Workspace")[game.Players.LocalPlayer.Name]:GetChildren()) do
  53. if string.match(v1.Name, "Corn") or string.match(v1.Name, "Tomato") or string.match(v1.Name, "Carrot") then
  54. corn = v1;
  55. break;
  56. end
  57. end
  58. if corn ~= nil then
  59. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(41, cargoStation, corn);
  60. end
  61. end)
  62. wait(1);
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(cFrameRn.X, cFrameRn.Y, cFrameRn.Z));
  64. wait(1);
  65. controls:Enable();
  66. end)
  67. end
  68. end
  69. end)
  70. end
  71. end)
  72. else
  73. notice:Fire("StarEssentials", "Please place a capital cargo station in your node for AutoCornFarm!", 4);
  74. end
  75. end
  76. end
  77.  
  78.  
  79. -- poner el chido topbar
  80. spawn(function()
  81. while wait() do
  82. local hue = tick() % 10 / 10;
  83. variables.globRainbowColor3 = Color3.fromHSV(hue, 1, 1);
  84. game:GetService("Players").LocalPlayer.PlayerGui.TopBar.Frame.BackgroundColor3 = variables.globRainbowColor3;
  85. end
  86. end);
  87.  
  88.  
  89.  
  90. game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"):SetTopbarTransparency(1);
  91. local textArray = { " StarEssentials | Version: " .. variables.version};
  92. local textLabel = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("TopBar"):WaitForChild("Frame"):WaitForChild("TextLabel");
  93. local randomInt = math.random(1, #textArray);
  94. spawn(function()
  95. while true do
  96. textLabel.Text = textArray[randomInt];
  97. randomInt = randomInt + 1;
  98. if #textArray < randomInt then
  99. randomInt = 1;
  100. end;
  101. wait(0.1);
  102. end;
  103. end);
  104.  
  105.  
  106. -- Anti-die barrier
  107. local mt = getrawmetatable(game);
  108. local backup = mt.__namecall;
  109. if setreadonly then setreadonly(mt, false) else make_writeable(mt, true) end
  110.  
  111. mt.__namecall = newcclosure(function(...)
  112. local method = getnamecallmethod()
  113. local args = {...}
  114. if method == "FindPartOnRayWithWhitelist" then
  115. if _G.deathBarrierBypassEnabled then
  116. local getScript = getfenv(2).script
  117. if getScript == nil then
  118. getScript = ""
  119. end
  120. if tostring(getScript:GetFullName()) == "game.Players.LocalPlayer.PlayerScripts.LocalScript" then
  121. args[2].Y = 144;
  122. return backup(unpack(args))
  123. else
  124. return backup(...)
  125. end
  126. else
  127. return backup(...)
  128. end
  129. end
  130.  
  131.  
  132. if method == "FireServer" or method == "InvokeServer" then
  133. if _G.weaponMultiplierEnabled then
  134. if args[1].Name == "MenuActionEvent" then
  135. if args[2] == 33 and args[8] ~= "" and args[8] ~= "a" then
  136. spawn(function()
  137. wait()
  138. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  139. wait()
  140. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  141. wait()
  142. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  143. wait(0.1)
  144. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  145. wait()
  146. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  147. wait()
  148. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  149. wait(0.1)
  150. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  151. wait()
  152. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  153. wait()
  154. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  155. wait()
  156. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  157. wait(0.1)
  158. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  159. wait()
  160. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  161. wait()
  162. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  163. wait()
  164. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(args[2], args[3], args[4], args[5], args[6], args[7], "a");
  165. end);
  166. return backup(unpack(args))
  167. end
  168. elseif args[1].Name == "MenuActionEvent" and args[2] == 33 and args[8] == "a" then
  169. args[8] = "";
  170. return backup(unpack(args))
  171. else
  172.  
  173. end
  174. end
  175. end
  176. return backup(...)
  177. end)
  178.  
  179. _G.deathBarrierBypassEnabled = false;
  180.  
  181.  
  182. -- Load map
  183. msg = Instance.new("Message",workspace)
  184. msg.Text = "Loading map, pls wait!"
  185. game:GetService("Workspace").Camera.CameraType = Enum.CameraType.Scriptable;
  186. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(-2251, 196, 1465));
  187. wait(1)
  188. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(-1533, 190, -344));
  189. wait(1)
  190. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(-502, 138, -1308));
  191. wait(1)
  192. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(1494, 272, -1663));
  193. wait(1)
  194. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(1983, 138, 48));
  195. wait(1)
  196. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(2144, 135, 1611));
  197. wait(1)
  198. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(5, 274, 1302));
  199. wait(1)
  200. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(-131, 197, -463));
  201. wait(1)
  202. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(-1572, 206, -1235));
  203. wait(1)
  204. game:GetService("Workspace").Camera.CFrame = CFrame.new(Vector3.new(-1725, 263, -1798));
  205. wait(1)
  206. game:GetService("Workspace").Camera.CameraType = Enum.CameraType.Custom;
  207. wait(3 )
  208. msg:Destroy()
  209.  
  210.  
  211. -- Farm
  212. ----------------
  213.  
  214.  
  215.  
  216.  
  217. -- aureus auto
  218.  
  219.  
  220. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  221.  
  222. function auroAureusRun()
  223. if variables.autoAureus then
  224. hasFoundScavStation = false;
  225. pcall(function()
  226. if game:GetService("Workspace").Buildings[game.Players.LocalPlayer.Name]["Scavenge Station"].Name == "Scavenge Station" then
  227. hasFoundScavStation = true;
  228. end
  229. end)
  230. if hasFoundScavStation then
  231. pcall(function()
  232. scavStation = game:GetService("Workspace").Buildings[game.Players.LocalPlayer.Name]["Scavenge Station"];
  233. timerOnThing = game.Players.LocalPlayer.PlayerGui.Client.Drone.Slots.Amt.Text;
  234. if timerOnThing == "Ready" then
  235. pcall(function()
  236. -- ready for drone
  237. local cFrameRn = nil;
  238. cFrameRn = CFrame.new(Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z));
  239. local controls = require(game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule):GetControls()
  240. controls:Disable();
  241. pcall(function()
  242.  
  243. CFrameEnd = scavStation.Union.CFrame;
  244. Time = 5
  245. tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd})
  246. tween:Play()
  247. tween.Completed:Wait()
  248.  
  249.  
  250. wait(1);
  251. Game:GetService("ReplicatedStorage").Events.InteractEvent:FireServer(scavStation);
  252. wait(1);
  253. Game:GetService("ReplicatedStorage").Events.MenuAcitonEvent:FireServer(1, scavStation);
  254. wait(1);
  255.  
  256. CFrameEnd = game:GetService("Workspace").DroneShipment.MeshPart.CFrame;
  257. Time = 5
  258. tween = game:GetService("TweenService"):Create(game:GetService("Workspace").Drones[game.Players.LocalPlayer.Name].Hull, TweenInfo.new(Time), {CFrame = CFrameEnd})
  259. tween:Play()
  260. tween.Completed:Wait()
  261.  
  262. wait(2);
  263. Game:GetService("ReplicatedStorage").Events.MenuAcitonEvent:FireServer(3);
  264. wait(1);
  265. game:GetService("Workspace").Drones[game.Players.LocalPlayer.Name].Hull.CFrame = game:GetService("Workspace").Buildings[game.Players.LocalPlayer.Name]["Scavenge Station"].Union.CFrame;
  266. wait(1);
  267. Game:GetService("ReplicatedStorage").Events.MenuAcitonEvent:FireServer(4);
  268. wait();
  269. Game:GetService("ReplicatedStorage").Events.InteractEvent:FireServer(scavStation);
  270. end)
  271. wait(1);
  272.  
  273. CFrameEnd = CFrame.new(Vector3.new(cFrameRn.X, cFrameRn.Y, cFrameRn.Z));
  274. Time = 5
  275. tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd})
  276. tween:Play()
  277. tween.Completed:Wait()
  278.  
  279. wait(1);
  280. controls:Enable();
  281. Game:GetService("ReplicatedStorage").Events.ScavengeFunction:InvokeServer("Old-World Crate");
  282.  
  283. end)
  284. end
  285. end)
  286. else
  287. notice:Fire("Staressentials", "Please place a scavenge station in your node for AutoAureus!", 4);
  288. end
  289. end
  290. end
  291.  
  292. -- auto scavenge
  293.  
  294. function autoScavRun()
  295. if variables.autoScavEnabled then
  296. local controls = require(game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule):GetControls()
  297. pcall(function()
  298. for i,v in pairs(game:GetService("Workspace").Loot:GetChildren()) do
  299. wait(2);
  300. shouldBreak = false;
  301. pcall(function()
  302. if v.LootCrate ~= nil then
  303. pcall(function()
  304. controls:Disable();
  305. local cFrameRn = nil;
  306. cFrameRn = CFrame.new(Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z));
  307. local CFrameEnd = v.LootCrate.CFrame;
  308. local Time = 5
  309. local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd})
  310. tween:Play()
  311. tween.Completed:Wait()
  312. wait(2);
  313. Game:GetService("ReplicatedStorage").Events.CratePickUpEvent:FireServer(v);
  314. wait(2);
  315.  
  316. local CFrameEnd = CFrame.new(Vector3.new(cFrameRn.X, cFrameRn.Y, cFrameRn.Z));
  317. local Time = 5
  318. local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd})
  319. tween:Play()
  320. tween.Completed:Wait()
  321.  
  322. shouldBreak = true;
  323. wait(1);
  324. end)
  325. end
  326. end)
  327. if shouldBreak then
  328. break;
  329. end
  330. end
  331. controls:Enable();
  332. end)
  333. pcall(function()
  334. local controls = require(game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule):GetControls()
  335. controls:Enable();
  336. end)
  337. Game:GetService("ReplicatedStorage").Events.ScavengeFunction:InvokeServer("Scavenge Crate");
  338. end
  339. end
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349. -- Auto printer
  350.  
  351.  
  352.  
  353.  
  354. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  355.  
  356. function getClosestOwnedPrinter()
  357. local lplayer = game.Players.LocalPlayer
  358. local Character = lplayer.Character
  359. local HumanoidRootPart = Character and Character:FindFirstChild("HumanoidRootPart")
  360. if not (Character or HumanoidRootPart) then return end
  361. local TargetDistance = math.huge
  362. local Target
  363. for i,v in ipairs(game:GetService("Workspace").MoneyPrinters:GetChildren()) do
  364. pcall(function()
  365. mesh = nil;
  366. pcall(function()
  367. if v.PrimaryPart.Name ~= "" then
  368. mesh = v.PrimaryPart
  369. end
  370. end)
  371. pcall(function()
  372. if mesh == nil then
  373. mesh = v.PrimaryPart
  374. end
  375. end)
  376. if mesh then
  377. if string.lower(tostring(v.TrueOwner.Value)) == tostring(string.lower(game.Players.LocalPlayer.Name)) then
  378. local TargetHRP = mesh
  379. local mag = (HumanoidRootPart.Position - TargetHRP.Position).magnitude
  380. if mag < TargetDistance then
  381. TargetDistance = mag
  382. Target = v
  383. end
  384. end
  385. end
  386. end)
  387. end
  388.  
  389. return Target
  390. end
  391.  
  392.  
  393. function runAutoPrinter()
  394. if variables.autoPrinterFarm then
  395. if variables.deathBarrierBypassEnabled then
  396. pcall(function()
  397. ownedPrinters = 0;
  398. printersMade = 0;
  399. for i,v in pairs(game:GetService("Workspace").MoneyPrinters:GetChildren()) do
  400. if string.lower(tostring(v.TrueOwner.Value)) == tostring(string.lower(game.Players.LocalPlayer.Name)) then
  401. ownedPrinters = ownedPrinters + 1;
  402. end
  403. end
  404.  
  405. if ownedPrinters >= 2 or printersMade >= 2 then
  406. -- already have 2 printers
  407. else
  408. pcall(function()
  409. if variables.makebaseplate then
  410. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(4)
  411.  
  412.  
  413. local ohNumber1 = 1
  414. local ohString2 = "Node"
  415. local ohCFrame3 = CFrame.new(1.30126417, 2.68526554, 14.9110432, 0, -4.37113883e-08, 1, 0, 1, 4.37113883e-08, -1, 0, 0)
  416.  
  417. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  418.  
  419.  
  420.  
  421.  
  422. local ohNumber1 = 1
  423. local ohString2 = "Wooden Wall (1x2)"
  424. local ohCFrame3 = CFrame.new(0, 0, 0, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  425.  
  426. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  427.  
  428.  
  429.  
  430. local ohNumber1 = 1
  431. local ohString2 = "Wooden Wall (1x2)"
  432. local ohCFrame3 = CFrame.new(0, 0, 10, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  433.  
  434. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  435.  
  436.  
  437.  
  438. local ohNumber1 = 1
  439. local ohString2 = "Wooden Wall (1x2)"
  440. local ohCFrame3 = CFrame.new(7, 0, 10, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  441.  
  442. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  443.  
  444.  
  445.  
  446. local ohNumber1 = 1
  447. local ohString2 = "Wooden Wall (1x2)"
  448. local ohCFrame3 = CFrame.new(7, 0, 0, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  449.  
  450. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  451.  
  452.  
  453. local ohNumber1 = 1
  454. local ohString2 = "Wooden Wall (1x2)"
  455. local ohCFrame3 = CFrame.new(-7, 0, 0, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  456.  
  457. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  458.  
  459.  
  460.  
  461. local ohNumber1 = 1
  462. local ohString2 = "Wooden Wall (1x2)"
  463. local ohCFrame3 = CFrame.new(-7, 0, 10, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  464.  
  465. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  466. end
  467.  
  468. wait(1);
  469.  
  470.  
  471. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-394.148163, 153.951874, -81.6159363, 0.212195292, 3.52738674e-08, -0.977227271, -4.09336351e-08, 1, 2.72075322e-08, 0.977227271, 3.42281545e-08, 0.212195292);
  472.  
  473. wait(1);
  474. Game:GetService("ReplicatedStorage").Events.MenuEvent:FireServer(2, "Money Printer Advanced", nil, 8);
  475. wait(1);
  476. printer = getClosestOwnedPrinter();
  477. Game:GetService("ReplicatedStorage").Events.PickUpEvent:FireServer(printer, true);
  478. counterunowo = 0;
  479. pcall(function()
  480. while tonumber(printer.Int.Money.Value) < 999999 do
  481. if counterunowo > 10 then
  482. break;
  483. end
  484. wait(1);
  485. counterunowo = counterunowo + 1;
  486. end
  487. end)
  488. wait(1);
  489. didSuccessyy = false;
  490. pcall(function()
  491. if tonumber(printer.Int2.Money.Value) < 99999 then
  492. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-0.609249473, 3, 0.498477787, 0, 0, 1, 0, 1, -0, -1, 0, 0);
  493. didSuccessyy = true;
  494. end
  495. end)
  496. if didSuccessyy then
  497.  
  498. else
  499. Game:GetService("ReplicatedStorage").Events.PickUpEvent:FireServer(printer, true);
  500. wait(1);
  501. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-0.609249473, 3, 0.498477787, 0, 0, 1, 0, 1, -0, -1, 0, 0);
  502. end
  503.  
  504. wait(2);
  505. end)
  506. pcall(function()
  507. Game:GetService("ReplicatedStorage").Events.PickUpEvent:FireServer(printer, false);
  508. end)
  509. wait(2);
  510.  
  511.  
  512. printer.Int.Money.Changed:connect(function(newVal)
  513. doPrinterStuffy();
  514. end)
  515.  
  516. printersMade = printersMade + 1;
  517. runAutoPrinter();
  518. end
  519. end)
  520. else
  521. notice:Fire("Staressentials", "Please enable Bypass Barriers!", 4);
  522. end
  523. end
  524. end
  525.  
  526. function doPrinterStuffy()
  527. pcall(function()
  528. if isDoingPrinterRn == false then
  529. isDoingPrinterRn = true;
  530. if variables.autoPrinterFarm then
  531. if variables.deathBarrierBypassEnabled then
  532. pcall(function()
  533. for i,v in pairs(game:GetService("Workspace").MoneyPrinters:GetChildren()) do
  534. if string.lower(tostring(v.TrueOwner.Value)) == tostring(string.lower(game.Players.LocalPlayer.Name)) then
  535. if tonumber(v.Int.Money.Value) > 0 then
  536. howManyIsLeft = v.Int.Uses.Value;
  537.  
  538. cframeyy = CFrame.new(v.PrimaryPart.CFrame.X, v.PrimaryPart.CFrame.Y + 3, v.PrimaryPart.CFrame.Z);
  539.  
  540. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = cframeyy;
  541.  
  542. wait(2);
  543. Game:GetService("ReplicatedStorage").Events.InteractEvent:FireServer(v);
  544.  
  545. if howManyIsLeft == 0 then
  546. wait(1);
  547. runAutoPrinter();
  548. end
  549. end
  550. end
  551. end
  552. end)
  553. else
  554. notice:Fire("Staressentials", "Please enable Bypass Barriers!", 4);
  555. end
  556. end
  557. isDoingPrinterRn = false;
  558. else
  559.  
  560. end
  561. end)
  562. isDoingPrinterRn = false;
  563. end
  564.  
  565.  
  566.  
  567.  
  568. local UILibrary = loadstring(game:HttpGet("https://pastebin.com/raw/xBVw0uNM"))()
  569.  
  570. local localplayer = game.Players.LocalPlayer.Name
  571. -- Noclip
  572. noclip = false
  573. game:GetService('RunService').Stepped:connect(function()
  574. if noclip then
  575. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  576. end
  577. end)
  578.  
  579.  
  580. -- Load screen
  581. local Player = game:GetService("Players").LocalPlayer
  582. local ProgressBar = game.Players.LocalPlayer.PlayerGui.Client.ProgressBar
  583. ProgressBar.TextLabel.Text = "Loading StarEssentials";
  584. ProgressBar.Frame.Frame.Size = UDim2.new(0, 0, 1, 0);
  585. ProgressBar.Visible = true;
  586. ProgressBar.Frame.Frame:TweenSize(UDim2.new(1, 0, 1, 0), "In", "Linear", 1, true, u2);
  587. wait(1)
  588. ProgressBar.Visible = false
  589. local ProgressBar = game.Players.LocalPlayer.PlayerGui.Client.ProgressBar
  590. ProgressBar.TextLabel.Text = "Loading Gui";
  591. ProgressBar.Frame.Frame.Size = UDim2.new(0, 0, 1, 0);
  592. ProgressBar.Visible = true;
  593. ProgressBar.Frame.Frame:TweenSize(UDim2.new(1, 0, 1, 0), "In", "Linear", 1, true, u2);
  594. wait(1)
  595. ProgressBar.Visible = false
  596.  
  597.  
  598. -- infjump
  599.  
  600. _G.infinjump = false
  601.  
  602. local Mouse = Player:GetMouse()
  603. Mouse.KeyDown:connect(function(k)
  604. if _G.infinjump then
  605. if k:byte() == 32 then
  606. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  607. Humanoid:ChangeState("Jumping")
  608. wait(0.1)
  609. Humanoid:ChangeState("Seated")
  610. end
  611. end
  612. end)
  613. noclip = false
  614. game:GetService("RunService").Stepped:connect(
  615. function()
  616. if noclip then
  617. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  618. end
  619. end
  620. )
  621.  
  622. -- ESP
  623.  
  624. local ESP = loadstring(game:HttpGet("https://pastebin.com/raw/Lierd3sc"))()
  625.  
  626. -- UI
  627.  
  628. local MainUI = UILibrary.Load("StarEssentials")
  629.  
  630. local Home = MainUI.AddPage("Home", false)
  631.  
  632. local players = MainUI.AddPage("players")
  633.  
  634. local localps = MainUI.AddPage("Local player", false)
  635.  
  636. local troll = MainUI.AddPage("Troll")
  637.  
  638. local combat = MainUI.AddPage("Combat", false)
  639.  
  640. local farm = MainUI.AddPage("Farming", false)
  641.  
  642. local crafting = MainUI.AddPage("Crafting", false)
  643.  
  644. local teleports = MainUI.AddPage("Teleports", false)
  645.  
  646. local options = MainUI.AddPage("Options", false)
  647.  
  648.  
  649.  
  650.  
  651. -- Home
  652. local Starhome = Home.AddLabel("StarEssentials")
  653. local spacehome = Home.AddLabel("")
  654. local gamehome = Home.AddLabel("Game: Electric State DarkRP")
  655. local spacehome2 = Home.AddLabel("")
  656. local creditshome = Home.AddLabel("Made by migu")
  657.  
  658. local gunhelper = Home.AddLabel("Gun donator: Lgd nemo")
  659. local spacehome3 = Home.AddLabel("")
  660. local discinvite = Home.AddButton("Copy discord invite", function()
  661. setclipboard("https://discord.gg/ewKCVhCpDB")
  662. end)
  663.  
  664. -- OPTIONS
  665.  
  666. local DELETEGUI = options.AddButton("Delete gui", function()
  667. game.CoreGui.StarEssentials:remove()
  668. end)
  669.  
  670. local killgun = options.AddToggle("Kill gun method", false, function(Value)
  671. if Value == true then
  672. variables.killmethodgun = true;
  673. end
  674. if Value == false then
  675. variables.killmethodgun = false;
  676. end
  677. end)
  678.  
  679. -- Players
  680.  
  681. local copyn = players.AddButton("Copy node", function()
  682. -- Jugador
  683. local playerNameClicked = game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text
  684. -- Objetos
  685.  
  686. -- node copy
  687.  
  688. local allItems = {};
  689. function addPropToArray(itemProperties)
  690. table.insert(allItems, itemProperties);
  691. end
  692.  
  693.  
  694. addPropToArray({"Dumpster", "73.999999642372"});
  695. addPropToArray({"Bust Statue Hat", "49.40000000596"});
  696. addPropToArray({"Barricade", "54.999992370605"});
  697. addPropToArray({"Shelves Lounge", "34.477004051208"});
  698. addPropToArray({"Plant Tree Small", "39.281250119209"});
  699. addPropToArray({"Chair Stool", "7.1212601661682"});
  700. addPropToArray({"Easel", "37.199998617172"});
  701. addPropToArray({"Couch Booth", "68.700000956655"});
  702. addPropToArray({"Canopy Fabric", "50.324487686157"});
  703. addPropToArray({"Railing", "28.300001144409"});
  704. addPropToArray({"Dressing Stand", "54.970696628094"});
  705. addPropToArray({"Clock Grandfather", "48.35000000149"});
  706. addPropToArray({"Bench White", "90.634871721268"});
  707. addPropToArray({"Dryer", "26.699999988079"});
  708. addPropToArray({"Map Board", "53.778938695788"});
  709. addPropToArray({"Desk Big", "133.5000000298"});
  710. addPropToArray({"Bunk Bed", "258.99999608099"});
  711. addPropToArray({"Box Small", "8.4375"});
  712. addPropToArray({"Ladder Wood", "64.5"});
  713. addPropToArray({"Game Table", "93.775068819523"});
  714. addPropToArray({"Sofa Red", "47.900000810623"});
  715. addPropToArray({"Fabric Overhead", "26.324487686157"});
  716. addPropToArray({"Table Coffee", "21.5"});
  717. addPropToArray({"Street Lamp", "65.10001373291"});
  718. addPropToArray({"Table Lounge", "29.75"});
  719. addPropToArray({"Plastic Table", "28.25"});
  720. addPropToArray({"Bottles Tall", "57"});
  721. addPropToArray({"Cabinets", "21.13872385025"});
  722. addPropToArray({"Table X", "41.662277579308"});
  723. addPropToArray({"Computer Screens", "78.196396231651"});
  724. addPropToArray({"Bench", "16.025469303131"});
  725. addPropToArray({"Logs", "20.819108009338"});
  726. addPropToArray({"Night Stand", "52.999983936548"});
  727. addPropToArray({"Table", "46.3703237921"});
  728. addPropToArray({"Chair Picnic", "12.501653194427"});
  729. addPropToArray({"Couch Small", "32.104417800903"});
  730. addPropToArray({"Generator", "39.463157773018"});
  731. addPropToArray({"Bed", "73.868103116751"});
  732. addPropToArray({"Register", "11.199994087219"});
  733. addPropToArray({"Ammo Box", "8.8533323407173"});
  734. addPropToArray({"Shelves", "58.25"});
  735. addPropToArray({"Chair Comfort", "27.039119243622"});
  736. addPropToArray({"Bench Modern", "34.25"});
  737. addPropToArray({"Table Booth", "20.800000011921"});
  738. addPropToArray({"Computer Scifi", "53.875"});
  739. addPropToArray({"Desk Small", "62.312395974994"});
  740. addPropToArray({"Bag", "14.172916173935"});
  741. addPropToArray({"Gun Rack", "40.814584851265"});
  742. addPropToArray({"Table Round", "32.800000160933"});
  743. addPropToArray({"Papers", "35.800000078976"});
  744. addPropToArray({"Couch White", "49.852519154549"});
  745. addPropToArray({"Plant", "13.493908643723"});
  746. addPropToArray({"Couch Lounge", "54.625000953674"});
  747. addPropToArray({"Chair Lounge", "37.25"});
  748. addPropToArray({"Plant Tree", "75.562500238419"});
  749. addPropToArray({"Bust Statue", "42.40000000596"});
  750. addPropToArray({"Dresser Long", "106.79998357594"});
  751. addPropToArray({"Sink", "16.000000119209"});
  752. addPropToArray({"Tub", "22.838701248169"});
  753. addPropToArray({"Table Long", "42.666665047407"});
  754. addPropToArray({"Sandbags", "28.201997280121"});
  755. addPropToArray({"Cabinet Filing", "16.500000923872"});
  756. addPropToArray({"Computer", "26.055407680571"});
  757. addPropToArray({"Chair", "19.256631344557"});
  758. addPropToArray({"Podium", "20.800003483891"});
  759. addPropToArray({"Sci Fi", "51.259048700333"});
  760. addPropToArray({"Long Shelves", "78.300012856722"});
  761. addPropToArray({"Box", "9.9375"});
  762. addPropToArray({"Computer Set-up", "51.254103973508"});
  763. addPropToArray({"Shelves Store", "52.024270653725"});
  764. addPropToArray({"Camp Food", "48.442285079509"});
  765. addPropToArray({"Book Shelves", "97.422241687775"});
  766. addPropToArray({"Rat Candle", "37.966639995575"});
  767. addPropToArray({"Chair Beanbag", "14.30319237709"});
  768. addPropToArray({"Board", "95.929889678955"});
  769. addPropToArray({"Chair Folding", "10.11127614975"});
  770. addPropToArray({"Washer", "26.75"});
  771. addPropToArray({"Bottles Small", "38.549999892712"});
  772. addPropToArray({"Desk Low", "33.420437626541"});
  773. addPropToArray({"Desk", "73.399993047118"});
  774. addPropToArray({"Furnace", "60.649999566376"});
  775. addPropToArray({"Starlight", "20.715383768082"});
  776. addPropToArray({"Telephone Pole Light", "65.849999576807"});
  777. addPropToArray({"Lamp", "16.582590252161"});
  778. addPropToArray({"Floor Lamp", "9.4999998956919"});
  779. addPropToArray({"Lamp Prisim", "11.000000953674"});
  780. addPropToArray({"Lamp WallStreet", "19"});
  781. addPropToArray({"Spotlight", "10.89999973774"});
  782. addPropToArray({"Lamp Small", "12.582590252161"});
  783. addPropToArray({"House Wasteland2", "1103.7285881341"});
  784. addPropToArray({"Saloon Adobe", "1348.8256006762"});
  785. addPropToArray({"Old Warehouse", "2169.1924418211"});
  786. addPropToArray({"House Wasteland", "866.5"});
  787. addPropToArray({"Garage Wasteland", "768"});
  788. addPropToArray({"Wooden Wall Thick (2x3)", "39.5"});
  789. addPropToArray({"Wooden Wall (2x3)", "38.5"});
  790. addPropToArray({"Wooden Wall Thick (1x2)", "25.5"});
  791. addPropToArray({"Wooden Wall Thick (1x3)", "32.5"});
  792. addPropToArray({"Wooden Wall (2x2)", "31.5"});
  793. addPropToArray({"Fence", "43.326451078057"});
  794. addPropToArray({"Wooden Wall (1x2)", "24.5"});
  795. addPropToArray({"Wooden Wall Thick (2x2)", "32.5"});
  796. addPropToArray({"Counter (1x2)", "37.600000143051"});
  797. addPropToArray({"Wooden Wall (1x3)", "31.5"});
  798. addPropToArray({"Slot Machine", "67.245401829481"});
  799. addPropToArray({"Taps", "36.375"});
  800. addPropToArray({"Register Shop", "20.541307538748"});
  801. addPropToArray({"Shop Beacon", "53.224999696016"});
  802. addPropToArray({"Killzone Board", "29.705087780952"});
  803. addPropToArray({"Piano Tall", "34.199897825718"});
  804. addPropToArray({"Soda Machine", "50.5"});
  805. addPropToArray({"Fuel Station Saturn", "48.061149220914"});
  806. addPropToArray({"Dispencer", "52.273146498948"});
  807. addPropToArray({"Vending Machine", "42.547998577356"});
  808. addPropToArray({"Billboard Sign 1", "15.25"});
  809. addPropToArray({"Door Double", "110.00000275671"});
  810. addPropToArray({"Door", "34.749816894531"});
  811. addPropToArray({"Door Vault", "49.000025033951"});
  812.  
  813.  
  814.  
  815. function getItemNameFromId(itemId)
  816. for i,v in pairs(allItems) do
  817. if v[2] == tostring(itemId) then
  818. return tostring(v[1]);
  819. end
  820. end
  821. return "";
  822. end
  823.  
  824. -- Copiar
  825. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  826. wassuccessyy = false;
  827. pcall(function()
  828. if game:GetService("Workspace").Buildings[playerNameClicked].Node.Name == "Node" then
  829. pcall(function()
  830. fullStringOutput = "--Staressentials node copier\n--Please execute this as a script in a new server to paste the node!\n--Please report bugs to https://discord.gg/ewKCVhCpDB\n\nGame:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(1, \"Node\", CFrame.new(" .. tostring(game:GetService("Workspace").Buildings[playerNameClicked].Node.PrimaryPart.CFrame) .. "));\n";
  831.  
  832.  
  833. for i,v in pairs(game:GetService("Workspace").Buildings[playerNameClicked]:GetChildren()) do
  834. pcall(function()
  835. if v.Name ~= "Node" then
  836. if v.Name == "" then
  837. unqId = 0;
  838. for i1,v1 in pairs(v:GetChildren()) do
  839. pcall(function()
  840. size = v1.Size;
  841. unqId = unqId + (size.X + size.Y + size.Z);
  842. end)
  843. end
  844. if unqId ~= 0 then
  845. if getItemNameFromId(unqId) ~= "" then
  846. print("Item found!: " .. getItemNameFromId(unqId));
  847. matRep = tostring(v.PrimaryPart.Material):gsub("Enum.Material.", "");
  848. fullStringOutput = fullStringOutput .. "Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(1, \"" .. getItemNameFromId(unqId) .. "\", CFrame.new(" .. tostring(v.PrimaryPart.CFrame) .. "), nil, BrickColor.new(\"" .. tostring(v.PrimaryPart.BrickColor) .. "\"), nil, nil, \"" .. tostring(matRep) .. "\");\n";
  849. end
  850. end
  851. elseif v.Name == "Resizable Wall" then
  852. fullStringOutput = fullStringOutput .. "Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(1, \"" .. v.Name .. "\", CFrame.new(" .. tostring(v.PrimaryPart.CFrame) .. "));\n";
  853. fullStringOutput = fullStringOutput .. "wait(0.5); lastWall = nil; for i,v in pairs(game:GetService(\"Workspace\").Buildings[game.Players.LocalPlayer.Name]:GetChildren()) do if v.Name == \"Resizable Wall\" then lastWall = v; end end Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(7, lastWall, lastWall.PrimaryPart.CFrame, nil, Vector3.new(" .. tostring(v.PrimaryPart.Size) .. "));\n";
  854. matRep = tostring(v.PrimaryPart.Material):gsub("Enum.Material.", "");
  855. fullStringOutput = fullStringOutput .. "wait(0.5); lastWall = nil; for i,v in pairs(game:GetService(\"Workspace\").Buildings[game.Players.LocalPlayer.Name]:GetChildren()) do if v.Name == \"Resizable Wall\" then lastWall = v; end end Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(5, lastWall, lastWall.PrimaryPart.CFrame, nil, BrickColor.new(\"" .. tostring(v.PrimaryPart.BrickColor) .. "\"), nil, nil, \"" .. tostring(matRep) .. "\");\n";
  856. elseif string.match(v.Name, "Picture Sign") then
  857. fullStringOutput = fullStringOutput .. "Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(1, \"" .. v.Name .. "\", CFrame.new(" .. tostring(v.PrimaryPart.CFrame) .. "));\n";
  858. pictureId = tostring(v.Part.SurfaceGui["1"].Image):gsub("rbxassetid://", "");
  859. fullStringOutput = fullStringOutput .. "wait(0.5); lastWall = nil; for i,v in pairs(game:GetService(\"Workspace\").Buildings[game.Players.LocalPlayer.Name]:GetChildren()) do if string.match(v.Name, \"Picture Sign\") then lastWall = v; end end Game:GetService(\"ReplicatedStorage\").Events.MenuActionEvent:FireServer(29, lastWall, {\"" .. pictureId .. "\"});\n";
  860. elseif string.match(v.Name, "Billboard Sign") then
  861. fullStringOutput = fullStringOutput .. "Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(1, \"" .. v.Name .. "\", CFrame.new(" .. tostring(v.PrimaryPart.CFrame) .. "));\n";
  862. textOnSign = tostring(tostring(v.Part.SurfaceGui["1"].Text):gsub("\"", "\\\""):gsub("\\", "\\\\"));
  863. textOnSign = tostring(textOnSign):gsub("\n", "\\n");
  864. fullStringOutput = fullStringOutput .. "wait(0.5); lastWall = nil; for i,v in pairs(game:GetService(\"Workspace\").Buildings[game.Players.LocalPlayer.Name]:GetChildren()) do if string.match(v.Name, \"Billboard Sign\") then lastWall = v; end end Game:GetService(\"ReplicatedStorage\").Events.MenuActionEvent:FireServer(7, lastWall, {\"" .. textOnSign .. "\"});\n";
  865. else
  866. fullStringOutput = fullStringOutput .. "Game:GetService(\"ReplicatedStorage\").Events.BuildingEvent:FireServer(1, \"" .. v.Name .. "\", CFrame.new(" .. tostring(v.PrimaryPart.CFrame) .. "));\n";
  867. end
  868. end
  869. end)
  870. end
  871. end)
  872.  
  873. nodeCopyName = "Node_copy_" .. playerNameClicked .. math.random(1,100) .. ".txt";
  874. writefile(nodeCopyName, fullStringOutput .. "\nprint(\"Staressentials - Pasted node!\")");
  875. notice:Fire("Staressentials", "Saved all available data to " .. nodeCopyName);
  876. wassuccessyy = true;
  877. else
  878. notice:Fire("Staressentials", "Error, does that player have a node?", 4);
  879. end
  880. end)
  881. if wassuccessyy == false then
  882. notice:Fire("Staressentials", "Error, does that player have a node?", 4);
  883. end
  884. end)
  885.  
  886. local Kill = players.AddButton("Kill", function()
  887. local jugador = game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text
  888. local pos2 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  889. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[jugador].Character.HumanoidRootPart.CFrame
  890. if variables.killmethodgun == false then
  891. for count = 1, 10 do
  892. wait(0.1)
  893. local ohNumber1 = 34
  894. local ohInstance2 = game.Workspace[jugador].Humanoid
  895. local ohCFrame3 = CFrame.new(-139.816254, 141.651443, 0.956251562, -0.772362351, -0.303539932, 0.557960451, -1.49011612e-08, 0.878425837, 0.477878571, -0.635182142, 0.369095415, -0.678463101)
  896.  
  897. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(ohNumber1, ohInstance2, ohCFrame3)
  898. end
  899. end
  900. if variables.killmethodgun == true then
  901. local Player = game:GetService("Players").LocalPlayer
  902. local character = Player.Character or Player.CharacterAdded:Wait()
  903. local HumanoidRootPart = character:WaitForChild("HumanoidRootPart")
  904. local Humanoid = character:WaitForChild("Humanoid")
  905.  
  906. wait(1)
  907. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  908. wait(0.2)
  909. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  910. wait(0.2)
  911. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  912. wait(0.2)
  913. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  914. wait(0.2);
  915. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  916. wait(0.2);
  917. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  918. wait(0.2);
  919. Game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(33, game:GetService("Workspace")[jugador].HumanoidRootPart.CFrame, 1, game:GetService("Workspace")[jugador].Humanoid, 26, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool"));
  920. end
  921. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos2
  922. end)
  923.  
  924. local baseplate = teleports.AddButton("Baseplate", function()
  925. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 10, 0);
  926. end)
  927.  
  928. local TP = players.AddButton("TP", function()
  929. local jugador = game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text
  930. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[jugador].Character.HumanoidRootPart.CFrame
  931. end)
  932.  
  933. local TPNODE = players.AddButton("TP NODE", function()
  934. local jugador = game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text
  935. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings[jugador].Node.PrimaryPart.CFrame + Vector3.new(0,10,0)
  936. end)
  937.  
  938. local stealo = players.AddButton("Steal Outfit", function()
  939. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  940. -- HTTP y variables
  941. HttpService = game:GetService("HttpService")
  942.  
  943. function httprequesty(url)
  944. return game:HttpGet(url);
  945. end
  946.  
  947.  
  948.  
  949. function HttpGet(url)
  950. return HttpService:JSONDecode(httprequesty(url))
  951. end
  952. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  953.  
  954. -- STEAL OUTFIT CALL
  955. local http = game:GetService('HttpService')
  956. function getOutfits(id)
  957. local data
  958. local url = 'https://avatar.rprxy.xyz/v1/users/'..id..'/avatar'
  959. data = http:JSONDecode(game:HttpGet(url,true))
  960. local tables = data.assets
  961. local stuff = {}
  962. for i = 1,#tables do
  963. local subTables = tables[i]
  964. local id = subTables["id"]
  965. table.insert(stuff,id)
  966. end
  967. return stuff
  968. end
  969. -- steal 2
  970. local playerToSteal = game:GetService("Players")[game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text];
  971. local daOutfits = getOutfits(playerToSteal.UserId);
  972. local curOutfitString = "";
  973. for _asd, vp in pairs(daOutfits) do
  974. curOutfitString = curOutfitString .. vp .. ","
  975. end
  976. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(8, { playerToSteal.PlayerData.RoleplayName.Value, curOutfitString .. playerToSteal.PlayerData.Outfit.Value, true });
  977. notice:Fire("StarEssentials", "You have stolen their outfit!");
  978. end)
  979.  
  980. local stealoclip = players.AddButton("Steal outfit id (clipboard)", function()
  981. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  982. -- HTTP y variables
  983. HttpService = game:GetService("HttpService")
  984.  
  985. function httprequesty(url)
  986. return game:HttpGet(url);
  987. end
  988.  
  989.  
  990.  
  991. function HttpGet(url)
  992. return HttpService:JSONDecode(httprequesty(url))
  993. end
  994. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  995.  
  996. local jugador = game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text
  997. local Players = game:GetService("Players")
  998. local playerToSteal = Players:GetUserIdFromNameAsync(jugador)
  999. local daOutfits = getOutfits(playerToSteal);
  1000. local curOutfitString = "";
  1001. for _asd, vp in pairs(daOutfits) do
  1002. curOutfitString = curOutfitString .. vp .. ","
  1003. end
  1004. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(8, { jugador, curOutfitString, true });
  1005. notice:Fire("Staressentials", "Copied their outfit id's to clipboard!");
  1006. end)
  1007.  
  1008. local mediheal = players.AddToggle("Medi Auto Heal", false, function(Value)
  1009. local jugador = game:GetService("CoreGui").StarEssentials.ContainerFrame.MainFrame.Display.players.PlayerBar.PlayerInput.Text
  1010. while Value == true do
  1011. wait(0.1)
  1012. local ohNumber1 = 5
  1013. local ohInstance2 = workspace[jugador].Humanoid
  1014.  
  1015. game:GetService("ReplicatedStorage").Events.ToolsEvent:FireServer(ohNumber1, ohInstance2)
  1016. end
  1017. end)
  1018.  
  1019. -- localplayer
  1020.  
  1021.  
  1022. local fullbright = localps.AddToggle("FullBright", false, function(Value)
  1023. if Value == true then
  1024. if not _G.FullBrightExecuted then
  1025.  
  1026. _G.FullBrightEnabled = false
  1027.  
  1028. _G.NormalLightingSettings = {
  1029. Brightness = game:GetService("Lighting").Brightness,
  1030. ClockTime = game:GetService("Lighting").ClockTime,
  1031. FogEnd = game:GetService("Lighting").FogEnd,
  1032. GlobalShadows = game:GetService("Lighting").GlobalShadows,
  1033. Ambient = game:GetService("Lighting").Ambient
  1034. }
  1035.  
  1036. game:GetService("Lighting"):GetPropertyChangedSignal("Brightness"):Connect(function()
  1037. if game:GetService("Lighting").Brightness ~= 1 and game:GetService("Lighting").Brightness ~= _G.NormalLightingSettings.Brightness then
  1038. _G.NormalLightingSettings.Brightness = game:GetService("Lighting").Brightness
  1039. if not _G.FullBrightEnabled then
  1040. repeat
  1041. wait()
  1042. until _G.FullBrightEnabled
  1043. end
  1044. game:GetService("Lighting").Brightness = 1
  1045. end
  1046. end)
  1047.  
  1048. game:GetService("Lighting"):GetPropertyChangedSignal("ClockTime"):Connect(function()
  1049. if game:GetService("Lighting").ClockTime ~= 12 and game:GetService("Lighting").ClockTime ~= _G.NormalLightingSettings.ClockTime then
  1050. _G.NormalLightingSettings.ClockTime = game:GetService("Lighting").ClockTime
  1051. if not _G.FullBrightEnabled then
  1052. repeat
  1053. wait()
  1054. until _G.FullBrightEnabled
  1055. end
  1056. game:GetService("Lighting").ClockTime = 12
  1057. end
  1058. end)
  1059.  
  1060. game:GetService("Lighting"):GetPropertyChangedSignal("FogEnd"):Connect(function()
  1061. if game:GetService("Lighting").FogEnd ~= 786543 and game:GetService("Lighting").FogEnd ~= _G.NormalLightingSettings.FogEnd then
  1062. _G.NormalLightingSettings.FogEnd = game:GetService("Lighting").FogEnd
  1063. if not _G.FullBrightEnabled then
  1064. repeat
  1065. wait()
  1066. until _G.FullBrightEnabled
  1067. end
  1068. game:GetService("Lighting").FogEnd = 786543
  1069. end
  1070. end)
  1071.  
  1072. game:GetService("Lighting"):GetPropertyChangedSignal("GlobalShadows"):Connect(function()
  1073. if game:GetService("Lighting").GlobalShadows ~= false and game:GetService("Lighting").GlobalShadows ~= _G.NormalLightingSettings.GlobalShadows then
  1074. _G.NormalLightingSettings.GlobalShadows = game:GetService("Lighting").GlobalShadows
  1075. if not _G.FullBrightEnabled then
  1076. repeat
  1077. wait()
  1078. until _G.FullBrightEnabled
  1079. end
  1080. game:GetService("Lighting").GlobalShadows = false
  1081. end
  1082. end)
  1083.  
  1084. game:GetService("Lighting"):GetPropertyChangedSignal("Ambient"):Connect(function()
  1085. if game:GetService("Lighting").Ambient ~= Color3.fromRGB(178, 178, 178) and game:GetService("Lighting").Ambient ~= _G.NormalLightingSettings.Ambient then
  1086. _G.NormalLightingSettings.Ambient = game:GetService("Lighting").Ambient
  1087. if not _G.FullBrightEnabled then
  1088. repeat
  1089. wait()
  1090. until _G.FullBrightEnabled
  1091. end
  1092. game:GetService("Lighting").Ambient = Color3.fromRGB(178, 178, 178)
  1093. end
  1094. end)
  1095.  
  1096. game:GetService("Lighting").Brightness = 1
  1097. game:GetService("Lighting").ClockTime = 12
  1098. game:GetService("Lighting").FogEnd = 786543
  1099. game:GetService("Lighting").GlobalShadows = false
  1100. game:GetService("Lighting").Ambient = Color3.fromRGB(178, 178, 178)
  1101.  
  1102. local LatestValue = true
  1103. spawn(function()
  1104. repeat
  1105. wait()
  1106. until _G.FullBrightEnabled
  1107. while wait() do
  1108. if _G.FullBrightEnabled ~= LatestValue then
  1109. if not _G.FullBrightEnabled then
  1110. game:GetService("Lighting").Brightness = _G.NormalLightingSettings.Brightness
  1111. game:GetService("Lighting").ClockTime = _G.NormalLightingSettings.ClockTime
  1112. game:GetService("Lighting").FogEnd = _G.NormalLightingSettings.FogEnd
  1113. game:GetService("Lighting").GlobalShadows = _G.NormalLightingSettings.GlobalShadows
  1114. game:GetService("Lighting").Ambient = _G.NormalLightingSettings.Ambient
  1115. else
  1116. game:GetService("Lighting").Brightness = 1
  1117. game:GetService("Lighting").ClockTime = 12
  1118. game:GetService("Lighting").FogEnd = 786543
  1119. game:GetService("Lighting").GlobalShadows = false
  1120. game:GetService("Lighting").Ambient = Color3.fromRGB(178, 178, 178)
  1121. end
  1122. LatestValue = not LatestValue
  1123. end
  1124. end
  1125. end)
  1126. end
  1127.  
  1128. _G.FullBrightExecuted = true
  1129. _G.FullBrightEnabled = not _G.FullBrightEnabled
  1130. end
  1131. if Value == false then
  1132. if not _G.FullBrightExecuted then
  1133.  
  1134. _G.FullBrightEnabled = false
  1135.  
  1136. _G.NormalLightingSettings = {
  1137. Brightness = game:GetService("Lighting").Brightness,
  1138. ClockTime = game:GetService("Lighting").ClockTime,
  1139. FogEnd = game:GetService("Lighting").FogEnd,
  1140. GlobalShadows = game:GetService("Lighting").GlobalShadows,
  1141. Ambient = game:GetService("Lighting").Ambient
  1142. }
  1143.  
  1144. game:GetService("Lighting"):GetPropertyChangedSignal("Brightness"):Connect(function()
  1145. if game:GetService("Lighting").Brightness ~= 1 and game:GetService("Lighting").Brightness ~= _G.NormalLightingSettings.Brightness then
  1146. _G.NormalLightingSettings.Brightness = game:GetService("Lighting").Brightness
  1147. if not _G.FullBrightEnabled then
  1148. repeat
  1149. wait()
  1150. until _G.FullBrightEnabled
  1151. end
  1152. game:GetService("Lighting").Brightness = 1
  1153. end
  1154. end)
  1155.  
  1156. game:GetService("Lighting"):GetPropertyChangedSignal("ClockTime"):Connect(function()
  1157. if game:GetService("Lighting").ClockTime ~= 12 and game:GetService("Lighting").ClockTime ~= _G.NormalLightingSettings.ClockTime then
  1158. _G.NormalLightingSettings.ClockTime = game:GetService("Lighting").ClockTime
  1159. if not _G.FullBrightEnabled then
  1160. repeat
  1161. wait()
  1162. until _G.FullBrightEnabled
  1163. end
  1164. game:GetService("Lighting").ClockTime = 12
  1165. end
  1166. end)
  1167.  
  1168. game:GetService("Lighting"):GetPropertyChangedSignal("FogEnd"):Connect(function()
  1169. if game:GetService("Lighting").FogEnd ~= 786543 and game:GetService("Lighting").FogEnd ~= _G.NormalLightingSettings.FogEnd then
  1170. _G.NormalLightingSettings.FogEnd = game:GetService("Lighting").FogEnd
  1171. if not _G.FullBrightEnabled then
  1172. repeat
  1173. wait()
  1174. until _G.FullBrightEnabled
  1175. end
  1176. game:GetService("Lighting").FogEnd = 786543
  1177. end
  1178. end)
  1179.  
  1180. game:GetService("Lighting"):GetPropertyChangedSignal("GlobalShadows"):Connect(function()
  1181. if game:GetService("Lighting").GlobalShadows ~= false and game:GetService("Lighting").GlobalShadows ~= _G.NormalLightingSettings.GlobalShadows then
  1182. _G.NormalLightingSettings.GlobalShadows = game:GetService("Lighting").GlobalShadows
  1183. if not _G.FullBrightEnabled then
  1184. repeat
  1185. wait()
  1186. until _G.FullBrightEnabled
  1187. end
  1188. game:GetService("Lighting").GlobalShadows = false
  1189. end
  1190. end)
  1191.  
  1192. game:GetService("Lighting"):GetPropertyChangedSignal("Ambient"):Connect(function()
  1193. if game:GetService("Lighting").Ambient ~= Color3.fromRGB(178, 178, 178) and game:GetService("Lighting").Ambient ~= _G.NormalLightingSettings.Ambient then
  1194. _G.NormalLightingSettings.Ambient = game:GetService("Lighting").Ambient
  1195. if not _G.FullBrightEnabled then
  1196. repeat
  1197. wait()
  1198. until _G.FullBrightEnabled
  1199. end
  1200. game:GetService("Lighting").Ambient = Color3.fromRGB(178, 178, 178)
  1201. end
  1202. end)
  1203.  
  1204. game:GetService("Lighting").Brightness = 1
  1205. game:GetService("Lighting").ClockTime = 12
  1206. game:GetService("Lighting").FogEnd = 786543
  1207. game:GetService("Lighting").GlobalShadows = false
  1208. game:GetService("Lighting").Ambient = Color3.fromRGB(178, 178, 178)
  1209.  
  1210. local LatestValue = true
  1211. spawn(function()
  1212. repeat
  1213. wait()
  1214. until _G.FullBrightEnabled
  1215. while wait() do
  1216. if _G.FullBrightEnabled ~= LatestValue then
  1217. if not _G.FullBrightEnabled then
  1218. game:GetService("Lighting").Brightness = _G.NormalLightingSettings.Brightness
  1219. game:GetService("Lighting").ClockTime = _G.NormalLightingSettings.ClockTime
  1220. game:GetService("Lighting").FogEnd = _G.NormalLightingSettings.FogEnd
  1221. game:GetService("Lighting").GlobalShadows = _G.NormalLightingSettings.GlobalShadows
  1222. game:GetService("Lighting").Ambient = _G.NormalLightingSettings.Ambient
  1223. else
  1224. game:GetService("Lighting").Brightness = 1
  1225. game:GetService("Lighting").ClockTime = 12
  1226. game:GetService("Lighting").FogEnd = 786543
  1227. game:GetService("Lighting").GlobalShadows = false
  1228. game:GetService("Lighting").Ambient = Color3.fromRGB(178, 178, 178)
  1229. end
  1230. LatestValue = not LatestValue
  1231. end
  1232. end
  1233. end)
  1234. end
  1235.  
  1236. _G.FullBrightExecuted = false
  1237. _G.FullBrightEnabled = not _G.FullBrightEnabled
  1238. end
  1239. end)
  1240.  
  1241.  
  1242. local Brightness = localps.AddSlider("Brightness", {Min = 0, Max = 5, Def = 1}, function(Value)
  1243. game:GetService("Lighting").Brightness = Value
  1244. end)
  1245.  
  1246. local walks = localps.AddToggle("Walkspeed", false, function(Value)
  1247. if Value == true then
  1248. local gmt = getrawmetatable(game)
  1249. setreadonly(gmt, false)
  1250. local oldindex = gmt.__index
  1251. gmt.__index = newcclosure(function(self,b)
  1252. if b == "WalkSpeed" then
  1253. return 16
  1254. end
  1255. return oldindex(self,b)
  1256. end)
  1257.  
  1258.  
  1259. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=500
  1260. end
  1261. if Value == false then
  1262. local gmt = getrawmetatable(game)
  1263. setreadonly(gmt, false)
  1264. local oldindex = gmt.__index
  1265. gmt.__index = newcclosure(function(self,b)
  1266. if b == "WalkSpeed" then
  1267. return 16
  1268. end
  1269. return oldindex(self,b)
  1270. end)
  1271.  
  1272.  
  1273. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=16
  1274. end
  1275. end)
  1276.  
  1277.  
  1278. local jumpp = localps.AddToggle("JumpPower", false, function(Value)
  1279. if Value == true then
  1280. local gmt = getrawmetatable(game)
  1281. setreadonly(gmt, false)
  1282. local oldindex = gmt.__index
  1283. gmt.__index = newcclosure(function(self,b)
  1284. if b == "JumpPower" then
  1285. return 16
  1286. end
  1287. return oldindex(self,b)
  1288. end)
  1289.  
  1290.  
  1291. game.Players.LocalPlayer.Character.Humanoid.JumpPower=120
  1292. end
  1293. if Value == false then
  1294. local gmt = getrawmetatable(game)
  1295. setreadonly(gmt, false)
  1296. local oldindex = gmt.__index
  1297. gmt.__index = newcclosure(function(self,b)
  1298. if b == "JumpPower" then
  1299. return 16
  1300. end
  1301. return oldindex(self,b)
  1302. end)
  1303.  
  1304.  
  1305. game.Players.LocalPlayer.Character.Humanoid.JumpPower=60
  1306. end
  1307. end)
  1308.  
  1309. local deathbarrier = localps.AddToggle("Bypass death barriers", false, function(Value)
  1310. if Value == true then
  1311. _G.deathBarrierBypassEnabled = true
  1312. variables.deathBarrierBypassEnabled = true;
  1313. notice:Fire("Staressentials", "Bypass death barriers enabled", 1);
  1314. end
  1315. if Value == false then
  1316. _G.deathBarrierBypassEnabled = false
  1317. variables.deathBarrierBypassEnabled = false;
  1318. end
  1319. notice:Fire("Staressentials", "Bypass death barriers disabled", 1);
  1320. end)
  1321.  
  1322.  
  1323. local jetpack = localps.AddButton("JetPack", function()
  1324. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  1325. local clientzzz = game:GetService("Players").LocalPlayer
  1326. local model = Instance.new("Model")
  1327. model.Name = "Jetpack"
  1328. local main = Instance.new("Part")
  1329. main.Name = "Main"
  1330. main.Parent = model
  1331. model.Parent = game:GetService("Workspace")[clientzzz.Name].Util
  1332.  
  1333. notice:Fire("StarEssentials", "Done! Press y to activate jetpack!");
  1334. end)
  1335.  
  1336.  
  1337. local tpcar = localps.AddButton("TP NEAR CAR", function()
  1338. function GetClosestVehicle()
  1339. local lplayer = game.Players.LocalPlayer
  1340. local Character = lplayer.Character
  1341. local HumanoidRootPart = Character and Character:FindFirstChild("HumanoidRootPart")
  1342. if not (Character or HumanoidRootPart) then return end
  1343. local TargetDistance = math.huge
  1344. local Target
  1345. for i,v in ipairs(game:GetService("Workspace").Vehicles:GetChildren()) do
  1346. pcall(function()
  1347. if v.Main then
  1348. local TargetHRP = v.Main
  1349. local mag = (HumanoidRootPart.Position - TargetHRP.Position).magnitude
  1350. if mag < TargetDistance then
  1351. TargetDistance = mag
  1352. Target = v
  1353. end
  1354. end
  1355. end)
  1356. end
  1357.  
  1358. return Target
  1359. end
  1360. game:GetService("ReplicatedStorage").Events.InteractEvent:FireServer(GetClosestVehicle().VehicleSeat);
  1361. end)
  1362.  
  1363.  
  1364.  
  1365. local invisible = localps.AddButton("Invisible", function()
  1366. notice = game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Note");
  1367. isdoneee = false;
  1368.  
  1369. pcall(function()
  1370. game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy();
  1371. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false;
  1372. game.Players.LocalPlayer.Character.UpperTorso.Anchored = true;
  1373. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false;
  1374. game.Players.LocalPlayer.Character.HumanoidRootPart.Transparency = 0;
  1375. isdoneee = true;
  1376. notice:Fire("Staressentials", "Made your player invisible to others!");
  1377. end)
  1378. if isdoneee == false then
  1379. notice:Fire("Staressentials", "Error! Maybe your already invisible?", 4);
  1380. end
  1381. end)
  1382.  
  1383.  
  1384.  
  1385. local Infjump = localps.AddToggle("Inf jump", false, function(Value)
  1386. if Value == true then
  1387. _G.infinjump = true
  1388. end
  1389. if Value == false then
  1390. _G.infinjump = false
  1391. end
  1392. end)
  1393.  
  1394.  
  1395. local hitbox = combat.AddToggle("Hitbox Expander", false, function(Value)
  1396. if Value == true then
  1397. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1398. pcall(function()
  1399. if v ~= game:GetService("Players").LocalPlayer then
  1400. v.Character.HumanoidRootPart.Size = Vector3.new(20,20,20);
  1401. v.Character.HumanoidRootPart.Transparency = 0.7;
  1402. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Bright green");
  1403. v.Character.HumanoidRootPart.Material = "Neon";
  1404. v.Character.HumanoidRootPart.CanCollide = false;
  1405. end
  1406. end)
  1407. end
  1408. notice:Fire("StarEssentials", "Hitbox Expander enabled.");
  1409. end
  1410. if Value == false then
  1411. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1412. pcall(function()
  1413. if v ~= game:GetService("Players").LocalPlayer then
  1414. v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1)
  1415. v.Character.HumanoidRootPart.CanCollide = true
  1416. end
  1417. end)
  1418. end
  1419. notice:Fire("StarEssentials", "Hitbox Expander disabled.");
  1420. end
  1421. end)
  1422.  
  1423.  
  1424. local noclip = localps.AddToggle("NoClip", false, function(Value)
  1425. if Value == true then
  1426. noclip = not noclip
  1427. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1428. end
  1429. if Value == false then
  1430. noclip = not noclip
  1431. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1432. end
  1433. end)
  1434.  
  1435. local freeze = localps.AddToggle("Freeze", false, function(Value)
  1436. if Value == true then
  1437. game.Players.LocalPlayer.Character.Head.Anchored = true
  1438. end
  1439. if Value == false then
  1440. game.Players.LocalPlayer.Character.Head.Anchored = false
  1441. end
  1442. end)
  1443.  
  1444. local PVP = localps.AddToggle("PVP", false, function(Value)
  1445. if Value == true then
  1446. local ohNumber1 = 6
  1447. local ohBoolean2 = true
  1448.  
  1449. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(ohNumber1, ohBoolean2)
  1450. end
  1451. if Value == false then
  1452. local ohNumber1 = 6
  1453. local ohBoolean2 = false
  1454.  
  1455. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(ohNumber1, ohBoolean2)
  1456. end
  1457. end)
  1458.  
  1459. local ESPTOGGLE = localps.AddToggle("ESP", false, function(Value)
  1460. if Value == true then
  1461. ESP:Toggle(true)
  1462. end
  1463. if Value == false then
  1464. ESP:Toggle(false)
  1465. end
  1466. end)
  1467.  
  1468. local NLR = localps.AddToggle("ANTI NLR", false, function(Value)
  1469. if Value == true then
  1470. while true do
  1471. wait(0.1)
  1472. local NLR = workspace:FindFirstChild("NL")
  1473. if NLR ~= nil and typeof(NLR) == "Instance" then
  1474. if NLR:FindFirstChild("NL") then
  1475. NLR:Destroy()
  1476. end
  1477. end
  1478. end
  1479. end
  1480. if Value == false then
  1481. print("set ANTI NLR false!")
  1482. end
  1483. end)
  1484.  
  1485. -- TROLL
  1486.  
  1487. local M1911 = troll.AddToggle("M1911 EFFECT SPAM", false, function(Value)
  1488. repeat
  1489. local ohNumber1 = 33
  1490. local ohCFrame2 = CFrame.new(-346.391754, 130.287308, -403.861359, -0, 0.999725401, 0.0234374516, -0.0253975485, 0.023429893, -0.999402881, -0.999677479, -0.000595253834, 0.0253905728)
  1491. local ohNumber3 = 1
  1492. local ohNil4 = nil
  1493. local ohNumber5 = 18
  1494. local ohInstance6 = workspace[localplayer].M1911
  1495.  
  1496. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(ohNumber1, ohCFrame2, ohNumber3, ohNil4, ohNumber5, ohInstance6)
  1497.  
  1498. local ohInstance1 = workspace[localplayer].HumanoidRootPart
  1499. local ohNumber2 = 3
  1500.  
  1501. game:GetService("ReplicatedStorage").Events.mpib:FireServer(ohInstance1, ohNumber2)
  1502. wait(0.001)
  1503. until Value == false
  1504. end)
  1505.  
  1506. local Invisible = troll.AddToggle("M1911 EFFECT SPAM", false, function(Value)
  1507. repeat
  1508. local ohNumber1 = 33
  1509. local ohCFrame2 = CFrame.new(-346.391754, 130.287308, -403.861359, -0, 0.999725401, 0.0234374516, -0.0253975485, 0.023429893, -0.999402881, -0.999677479, -0.000595253834, 0.0253905728)
  1510. local ohNumber3 = 1
  1511. local ohNil4 = nil
  1512. local ohNumber5 = 18
  1513. local ohInstance6 = workspace[localplayer].M1911
  1514.  
  1515. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(ohNumber1, ohCFrame2, ohNumber3, ohNil4, ohNumber5, ohInstance6)
  1516.  
  1517. local ohInstance1 = workspace[localplayer].HumanoidRootPart
  1518. local ohNumber2 = 3
  1519.  
  1520. game:GetService("ReplicatedStorage").Events.mpib:FireServer(ohInstance1, ohNumber2)
  1521. wait(0.001)
  1522. until Value == false
  1523. end)
  1524.  
  1525. -- Farming
  1526.  
  1527. local TPPRINTER = farm.AddButton("TP PRINTER", function()
  1528. local UnOwnedPrintersOnly = false
  1529. local Chil = workspace.MoneyPrinters:GetDescendants()
  1530. for i,v in pairs(Chil) do
  1531. if v and v.ClassName == "StringValue" and v.Name == "Int2" then
  1532. v.Parent:Destroy()
  1533. end
  1534. end
  1535.  
  1536.  
  1537. local PP = workspace.MoneyPrinters:GetDescendants()
  1538. for i,v in pairs(PP) do
  1539. if UnOwnedPrintersOnly == true then
  1540. if v and v.ClassName == "Part" and v.Parent.Int.Money.Value ~= 0 and v.Parent.TrueOwner.Value == nil then
  1541. print("Teleporting to an unowned printer!")
  1542. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  1543. end
  1544. else
  1545. if v and v.ClassName == "Part" and v.Parent.Int.Money.Value ~= 0 and v.Parent.TrueOwner.Value ~= nil then
  1546. print("Teleporting to an owned printer!")
  1547. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  1548. end
  1549. end
  1550. end
  1551. end)
  1552.  
  1553.  
  1554. local AntiAfk = localps.AddButton("Anti kick AFK", function()
  1555. local vu = game:GetService("VirtualUser")
  1556. game:GetService("Players").LocalPlayer.Idled:connect(function()
  1557. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  1558. wait(1)
  1559. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  1560. end)
  1561. end)
  1562.  
  1563. local infhunger = localps.AddButton("Full hunger", function()
  1564. while true do
  1565. wait()
  1566. game:GetService("Players")[localplayer].PlayerData.Hunger.Value = 100
  1567. end
  1568. end)
  1569.  
  1570. local TPUNPRINTER = farm.AddButton("TP UNOWNED PRINTER", function()
  1571. local UnOwnedPrintersOnly = true
  1572. local Chil = workspace.MoneyPrinters:GetDescendants()
  1573. for i,v in pairs(Chil) do
  1574. if v and v.ClassName == "StringValue" and v.Name == "Int2" then
  1575. v.Parent:Destroy()
  1576. end
  1577. end
  1578.  
  1579.  
  1580. local PP = workspace.MoneyPrinters:GetDescendants()
  1581. for i,v in pairs(PP) do
  1582. if UnOwnedPrintersOnly == true then
  1583. if v and v.ClassName == "Part" and v.Parent.Int.Money.Value ~= 0 and v.Parent.TrueOwner.Value == nil then
  1584. print("Teleporting to an unowned printer!")
  1585. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  1586. end
  1587. else
  1588. if v and v.ClassName == "Part" and v.Parent.Int.Money.Value ~= 0 and v.Parent.TrueOwner.Value ~= nil then
  1589. print("Teleporting to an owned printer!")
  1590. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  1591. end
  1592. end
  1593. end
  1594. end)
  1595.  
  1596.  
  1597.  
  1598.  
  1599.  
  1600.  
  1601. local autoaureus = farm.AddToggle("Auto aureus", false, function(Value)
  1602. if Value == true then
  1603. variables.autoAureus = true;
  1604. notice:Fire("Staressentials", "Auto aureus enabled", 1);
  1605. end
  1606. if Value == false then
  1607. variables.autoAureus = false;
  1608. notice:Fire("Staressentials", "Auto aureus disabled", 1);
  1609. end
  1610. end)
  1611.  
  1612.  
  1613. local autoscav = farm.AddToggle("Auto scavenge", false, function(Value)
  1614. if Value == true then
  1615. variables.autoScavEnabled = true;
  1616. notice:Fire("Staressentials", "Auto scavenge enabled", 1);
  1617. end
  1618. if Value == false then
  1619. variables.autoScavEnabled = false;
  1620. notice:Fire("Staressentials", "Auto scavenge disabled", 1);
  1621. end
  1622. end)
  1623.  
  1624. local autocorn = farm.AddToggle("Auto corn farm", false, function(Value)
  1625. if Value == true then
  1626. variables.autoCornFarm = true;
  1627. notice:Fire("Staressentials", "Auto corn farm enabled", 1);
  1628. end
  1629. if Value == false then
  1630. variables.autoCornFarm = false;
  1631. notice:Fire("Staressentials", "Auto corn farm disabled", 1);
  1632. end
  1633. end)
  1634.  
  1635. local autoprinter = farm.AddToggle("Auto farm printers", false, function(Value)
  1636. if Value == true then
  1637. variables.autoPrinterFarm = true;
  1638. notice:Fire("Staressentials", "Auto farm printers enabled", 1);
  1639. end
  1640. if Value == false then
  1641. variables.autoPrinterFarm = false;
  1642. notice:Fire("Staressentials", "Auto farm printers disabled", 1);
  1643. end
  1644. end)
  1645.  
  1646. local mbaseplayeprint = farm.AddToggle("Make baseplate (printer farm)", false, function(Value)
  1647. if Value == true then
  1648.  
  1649. local ohNumber1 = 1
  1650. local ohString2 = "Node"
  1651. local ohCFrame3 = CFrame.new(1.30126417, 2.68526554, 14.9110432, 0, -4.37113883e-08, 1, 0, 1, 4.37113883e-08, -1, 0, 0)
  1652.  
  1653. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1654.  
  1655.  
  1656.  
  1657.  
  1658. local ohNumber1 = 1
  1659. local ohString2 = "Wooden Wall (1x2)"
  1660. local ohCFrame3 = CFrame.new(0, 0, 0, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  1661.  
  1662. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1663.  
  1664.  
  1665.  
  1666. local ohNumber1 = 1
  1667. local ohString2 = "Wooden Wall (1x2)"
  1668. local ohCFrame3 = CFrame.new(0, 0, 10, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  1669.  
  1670. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1671.  
  1672.  
  1673.  
  1674. local ohNumber1 = 1
  1675. local ohString2 = "Wooden Wall (1x2)"
  1676. local ohCFrame3 = CFrame.new(7, 0, 10, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  1677.  
  1678. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1679.  
  1680.  
  1681.  
  1682. local ohNumber1 = 1
  1683. local ohString2 = "Wooden Wall (1x2)"
  1684. local ohCFrame3 = CFrame.new(7, 0, 0, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  1685.  
  1686. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1687.  
  1688.  
  1689. local ohNumber1 = 1
  1690. local ohString2 = "Wooden Wall (1x2)"
  1691. local ohCFrame3 = CFrame.new(-7, 0, 0, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  1692.  
  1693. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1694.  
  1695.  
  1696.  
  1697. local ohNumber1 = 1
  1698. local ohString2 = "Wooden Wall (1x2)"
  1699. local ohCFrame3 = CFrame.new(-7, 0, 10, 0, 3.33601961e-14, -1, 1, -4.37113883e-08, 1.19248806e-08, -4.37113883e-08, -1, 3.28389422e-14)
  1700.  
  1701. game:GetService("ReplicatedStorage").Events.BuildingEvent:FireServer(ohNumber1, ohString2, ohCFrame3)
  1702. notice:Fire("Staressentials", "baseplate created", 1);
  1703. end
  1704. if Value == false then
  1705. game:GetService("ReplicatedStorage").Events.MenuActionEvent:FireServer(4)
  1706. notice:Fire("Staressentials", "baseplate deleted", 1);
  1707. end
  1708. end)
  1709.  
  1710. -- combat
  1711.  
  1712. local d2damage = combat.AddButton("x2 Damage", function()
  1713. _G.weaponMultiplierEnabled = false;
  1714.  
  1715.  
  1716. end)
  1717.  
  1718. local d2damage = options.AddToggle("x2 damage", false, function(Value)
  1719. if Value == true then
  1720. _G.weaponMultiplierEnabled = true;
  1721. end
  1722. if Value == false then
  1723. _G.weaponMultiplierEnabled = false;
  1724. end
  1725. end)
  1726.  
  1727. -- Crafting
  1728.  
  1729. local M1911C = crafting.AddButton("M1911", function()
  1730. local nombre = game.Players.LocalPlayer.Name
  1731. local estacion = "Weapon Station"
  1732.  
  1733. local ohNumber1 = 3
  1734. local ohNumber2 = 1
  1735.  
  1736. game:GetService("ReplicatedStorage").Events.MenuEvent:FireServer(ohNumber1, ohNumber2)
  1737.  
  1738. local ohNumber1 = 2
  1739. local ohString2 = "M1911 Shipment"
  1740. local ohInstance3 = workspace.Buildings[nombre][estacion]
  1741. local ohNumber4 = 8
  1742.  
  1743. game:GetService("ReplicatedStorage").Events.MenuEvent:FireServer(ohNumber1, ohString2, ohInstance3, ohNumber4)
  1744.  
  1745. local ohNumber1 = 3
  1746. local ohNumber2 = 0
  1747.  
  1748. game:GetService("ReplicatedStorage").Events.MenuEvent:FireServer(ohNumber1, ohNumber2)
  1749. end)
  1750.  
  1751.  
  1752. while true do
  1753. wait(5)
  1754. pcall(function()
  1755. auroAureusRun();
  1756. autoScavRun();
  1757. runAutoPrinter();
  1758. doPrinterStuffy();
  1759. autoCornFarmRun();
  1760. end)
  1761. end
Add Comment
Please, Sign In to add comment