TheHatBoys

bedwars config

May 27th, 2023
10,902
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.63 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. repeat task.wait() until game:IsLoaded()
  5. repeat task.wait() until shared.GuiLibrary
  6. local uis = game:GetService("UserInputService")
  7. local GuiLibrary = shared.GuiLibrary
  8. local ScriptSettings = {}
  9. local UIS = game:GetService("UserInputService")
  10. local COB = function(tab, argstable)
  11. return GuiLibrary["ObjectsThatCanBeSaved"][tab.."Window"]["Api"].CreateOptionsButton(argstable)
  12. end
  13. function securefunc(func)
  14. task.spawn(function()
  15. spawn(function()
  16. pcall(function()
  17. loadstring(
  18. func()
  19. )()
  20. end)
  21. end)
  22. end)
  23. end
  24. function warnnotify(title, content, duration)
  25. local frame = GuiLibrary["CreateNotification"](title or "Windows", content or "(No Content Given)", duration or 5, "assets/WarningNotification.png")
  26. frame.Frame.Frame.ImageColor3 = Color3.fromRGB(255, 64, 64)
  27. end
  28. function infonotify(title, content, duration)
  29. local frame = GuiLibrary["CreateNotification"](title or "Windows", content or "(No Content Given)", duration or 5, "assets/InfoNotification.png")
  30. frame.Frame.Frame.ImageColor3 = Color3.fromRGB(255, 64, 64)
  31. end
  32. function getstate()
  33. local ClientStoreHandler = require(game.Players.LocalPlayer.PlayerScripts.TS.ui.store).ClientStore
  34. return ClientStoreHandler:getState().Game.matchState
  35. end
  36. function iscustommatch()
  37. local ClientStoreHandler = require(game.Players.LocalPlayer.PlayerScripts.TS.ui.store).ClientStore
  38. return ClientStoreHandler:getState().Game.customMatch
  39. end
  40. function checklagback()
  41. local hrp = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  42. return isnetworkowner(hrp)
  43. end
  44.  
  45. GuiLibrary["MainGui"].ScaledGui.ClickGui.Version.Text = "Creeperware private | v2"
  46. GuiLibrary["MainGui"].ScaledGui.ClickGui.MainWindow.TextLabel.Text = "Creeperware private v2"
  47. GuiLibrary["MainGui"].ScaledGui.ClickGui.Version.Version.Text = "Creeperware Private V2"
  48. GuiLibrary["MainGui"].ScaledGui.ClickGui.Version.Position = UDim2.new(1, -175 - 20, 1, -25)
  49. infonotify("Creeperware private V2", "Loaded successfully!", 5)
  50.  
  51.  
  52.  
  53.  
  54. local AutoWin = COB("World", {
  55. ["Name"] = "Creeperware private AutoWin ",
  56. ["Function"] = function(callback)
  57. if callback then
  58. pcall(function()
  59. game.Workspace.Gravity = 0
  60. for i,v in pairs(game.Players:GetPlayers()) do
  61. if v.Team == game:GetService("Players").LocalPlayer.Team and v ~= game:GetService("Players").LocalPlayer then
  62. v:Destroy()
  63. end
  64. end
  65. local Players = game:GetService("Players")
  66. getgenv().Autowin = true
  67. while getgenv().Autowin do
  68. for _,v in pairs(Players:GetPlayers()) do
  69. if v.Character and v.Character:FindFirstChildOfClass("Humanoid") and v.Character.Humanoid.Health ~= 0 and v ~= Players.LocalPlayer then
  70. repeat
  71. Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  72. task.wait(0.2)
  73. until v.Character.Humanoid.Health <= 0
  74. end
  75. end
  76. task.wait()
  77. end
  78. end)
  79. else
  80. pcall(function()
  81. getgenv().Autowin = false
  82. game.Workspace.Gravity = 196.2
  83. print("disabled autowin")
  84. end)
  85. end
  86. end,
  87. ["Default"] = false,
  88. ["HoverText"] = "works only with disabler"
  89. })
  90.  
  91. local CustomFly = COB("Blatant", {
  92. ["Name"] = "CustomClimbFly",
  93. ["Function"] = function(callback)
  94. if callback then
  95. pcall(function()
  96. ScriptSettings.CustomFly = true
  97. while task.wait() do
  98. if not ScriptSettings.CustomFly == true then return end
  99. game:GetService("Workspace").Gravity = 0
  100. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  101. task.wait(0.04)
  102. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Climbing)
  103. task.wait(0.01)
  104. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Landed)
  105. end
  106. end)
  107. else
  108. pcall(function()
  109. ScriptSettings.CustomFly = false
  110. game:GetService("Workspace").Gravity = 196.2
  111. end)
  112. end
  113. end,
  114. ["Default"] = false,
  115. ["HoverText"] = "Uses bypasses to fly lagbacks"
  116. })
  117.  
  118. local lobbyball = COB("Utility", {
  119. ["Name"] = "lobby ball",
  120. ["Function"] = function(callback)
  121. if callback then
  122. pcall(function()
  123. ScriptSettings.lobbyball = true
  124. while task.wait() do
  125. if not ScriptSettings.lobbyball == true then return end
  126. game:GetService("Workspace").Gravity = 0
  127. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Dead)
  128. end
  129. end)
  130. else
  131. pcall(function()
  132. ScriptSettings.lobbyball = false
  133. game:GetService("Workspace").Gravity = 196.2
  134. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Alive)
  135. end)
  136. end
  137. end,
  138. ["Default"] = false,
  139. ["HoverText"] = "epic lobby bypass👌"
  140. })
  141. local cflyswim = COB("Blatant", {
  142. ["Name"] = "CustomFlySwim",
  143. ["Function"] = function(callback)
  144. if callback then
  145. pcall(function()
  146. ScriptSettings.cflyswim = true
  147. while task.wait() do
  148. if not ScriptSettings.cflyswim == true then return end
  149. game:GetService("Workspace").Gravity = 0
  150. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  151. task.wait(0.04)
  152. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Landed)
  153. task.wait(0.01)
  154. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Swimming)
  155. end
  156. end)
  157. else
  158. pcall(function()
  159. ScriptSettings.cflyswim = false
  160. game:GetService("Workspace").Gravity = 196.2
  161. end)
  162. end
  163. end,
  164. ["Default"] = false,
  165. ["HoverText"] = "best custom fly"
  166. })
  167. local opCustomFly = COB("Blatant", {
  168. ["Name"] = "opfly",
  169. ["Function"] = function(callback)
  170. if callback then
  171. pcall(function()
  172. ScriptSettings.CustomFly = true
  173. while task.wait() do
  174. if not ScriptSettings.CustomFly == true then return end
  175. game:GetService("Workspace").Gravity = 0
  176. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  177. task.wait(0.04)
  178. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Climbing)
  179. task.wait(0.01)
  180. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Landed)
  181. task.wait(0.01)
  182. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Swimming)
  183. end
  184. end)
  185. else
  186. pcall(function()
  187. ScriptSettings.CustomFly = false
  188. game:GetService("Workspace").Gravity = 196.2
  189. end)
  190. end
  191. end,
  192. ["Default"] = false,
  193. ["HoverText"] = "fly but op"
  194. })
  195. local float = COB("Blatant", {
  196. ["Name"] = "Float",
  197. ["Function"] = function(callback)
  198. if callback then
  199. pcall(function()
  200. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  201. wait(0.15)
  202. ScriptSettings.float = true
  203. while task.wait() do
  204. if not ScriptSettings.CustomFly == true then return end
  205. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  206. end
  207. end)
  208. else
  209. pcall(function()
  210. ScriptSettings.float = false
  211. game:GetService("Workspace").Gravity = 196.2
  212. end)
  213. end
  214. end,
  215. ["Default"] = false,
  216. ["HoverText"] = "float/fly"
  217. })
  218. local KitExploit = COB("Utility", {
  219. ["Name"] = "KitExploit",
  220. ["Function"] = function(callback)
  221. if callback then
  222. pcall(function()
  223. ScriptSettings.KitExploit = true
  224. local kits = {
  225. ["Axolotl"] = require(game:GetService("ReplicatedStorage").TS.games.bedwars.kit.kits.axolotl["axolotl-kit"]).AxolotlKit,
  226. ["Beast"] = require(game:GetService("ReplicatedStorage").TS.games.bedwars.kit.kits["beast"]["beast-util"]).BeastKit,
  227. ["Dasher"] = require(game:GetService("ReplicatedStorage").TS.games.bedwars.kit.kits.dasher["dasher-kit"]).DasherKit,
  228. ["Fisherman"] = require(game:GetService("ReplicatedStorage").TS.games.bedwars.kit.kits["fisherman"]["fisherman-util"]).FishermanUtil,
  229. ["IceQueen"] = require(game:GetService("ReplicatedStorage").TS.games.bedwars.kit.kits["ice-queen"]["ice-queen-kit"]).IceQueenKit,
  230. ["Santa"] = require(game:GetService("ReplicatedStorage").TS.games.bedwars.kit.kits.santa["santa-util"]).SantaUtil,
  231. }
  232. kits["Axolotl"]["SWIM_TO_CHARACTER_TIME"] = 0.0000000000001
  233. kits["Axolotl"]["ACTIVE_COOLDOWN"] = 0.0000000000001
  234. kits["Beast"]["WALK_SPEED_MULTIPLIER"] = 5
  235. kits["Beast"]["KNOCKBACK_MULTIPLIER"] = 5
  236. kits["Dasher"]["DASH_COOLDOWN"] = 0.0000000000001
  237. kits["Dasher"]["CHARGE_TIME"] = 0.0000000000001
  238. kits["Dasher"]["CHARGE_TIME_BEFORE_CHARGING_STATE"] = 0.0000000000001
  239. kits["Dasher"]["TOTAL_CHARGE_TIME"] = 0.0000000000001
  240. kits["Fisherman"]["minigameDuration"] = 60
  241. kits["Fisherman"]["markerSize"] = UDim2.fromScale(0.05, 1)
  242. kits["Fisherman"]["totalDecaySpeedSec"] = 2
  243. kits["Fisherman"]["startingMarkerIncrementSpeed"] = 0.2
  244. kits["Fisherman"]["holdMinimumMarkerIncrementSpeed"] = 0.1
  245. kits["Fisherman"]["markerIncrementAmount"] = 0.025
  246. kits["Fisherman"]["fishZoneSize"] = UDim2.fromScale(0,5, 1)
  247. kits["Fisherman"]["fishZoneSpeedMultiplier"] = 5
  248. kits["Fisherman"]["fishZoneMoveCooldown"] = 10
  249. kits["Fisherman"]["fillAmount"] = 0.1
  250. kits["Fisherman"]["drainAmount"] = 0.0001
  251. kits["IceQueen"]["DAMAGE_REQUIREMENT"] = 0.0000000000001
  252. kits["IceQueen"]["PASSIVE_STACK_COOLDOWN"] = 0.0000000000001
  253. kits["IceQueen"]["PROC_COOLDOWN"] = 0.0000000000001
  254. kits["IceQueen"]["BAR_COUNT"] = 4
  255. kits["IceQueen"]["BASE_PASSIVE_DAMAGE"] = 0.1
  256. kits["IceQueen"]["BASE_SPEED_MULTIPLIER"] = 99
  257. kits["IceQueen"]["BASE_SLOW_LENGHT"] = 0.0000000000001
  258. kits["IceQueen"]["ICE_SWORD_PASSIVE_DAMAGE"] = 0.1
  259. kits["IceQueen"]["ICE_SWORD_SLOW_LENGTH"] = 0.0000000000001
  260. kits["IceQueen"]["ICE_SWORD_STUN_DURATION"] = 99
  261. kits["IceQueen"]["PASSIVE_EXPIRATION_TIME"] = 99
  262. kits["Santa"]["BOMB_DROP_DELAY"] = 0.0000000000001
  263. kits["Santa"]["TOTAL_BOMBS"] = 99
  264. kits["Santa"]["DROP_HEIGHT"] = 150
  265. kits["Santa"]["DROP_DELAY"] = 0.0000000000001
  266. end)
  267. else
  268. pcall(function()
  269. ScriptSettings.KitExploit = false
  270. infonotify("ItemExploit", "Unable to revert changes", "5")
  271. end)
  272. end
  273. end,
  274. ["Default"] = false,
  275. ["HoverText"] = "Exploits Axolotl, Beast, Dasher, Fisherman, IceQueen and Santa kit settings"
  276. })
  277. local ItemExploit = COB("Utility", {
  278. ["Name"] = "ItemExploit",
  279. ["Function"] = function(callback)
  280. if callback then
  281. pcall(function()
  282. ScriptSettings.ItemExploit = true
  283. local SW = require(game:GetService("ReplicatedStorage").TS.games.bedwars.items.stopwatch["stopwatch-constants"]).StopwatchConstants
  284. local TB = require(game:GetService("ReplicatedStorage").TS.games.bedwars.items.twirlblade["twirlblade-util"]).TwirlbladeUtil
  285. local CS = require(game:GetService("ReplicatedStorage").TS.games.bedwars["charge-shield"]["charge-shield-util"]).ChargeShieldUtil
  286. local GH = require(game:GetService("ReplicatedStorage").TS["grappling-hook"]["grappling-hook-util"])
  287. local HM = require(game:GetService("ReplicatedStorage").TS.vehicle.helicopter["helicopter-missile"])
  288. SW["DURATION"] = 60
  289. SW["EFFECT_DURATION"] = 60
  290. TB["SPIN_DAMAGE"] = 100
  291. CS["CHARGE_SHIELD_COOLDOWN_SEC"] = 0.0000000000001
  292. CS["CHARGE_DURATION"] = 10
  293. CS["CHARGE_SPEED_MULTIPLIER"] = 5
  294. CS["MAX_HIT_DISTANCE"] = 50
  295. CS["MAX_HIT_ANGLE"] = 360
  296. CS["MAX_HIT_HEIGHT"] = 100
  297. CS["HIT_DAMAGE"] = 100
  298. CS["VERTICAL_KNOCKBACK"] = 5
  299. CS["HORIZONTAL_KNOCKBACK"] = 5
  300. GH["SPEED"] = 5000
  301. GH["FIRE_COOLDOWN"] = 0.0000000000001
  302. GH["HIT_PLAYER_COOLDOWN"] = 0.0000000000001
  303. GH["HIT_BLOCK_COOLDOWN"] = 0.0000000000001
  304. HM["MISSLE_FIRE_RATE"] = 0.0000000000001
  305. end)
  306. else
  307. pcall(function()
  308. ScriptSettings.ItemExploit = false
  309. infonotify("ItemExploit", "Unable to revert changes", "5")
  310. end)
  311. end
  312. end,
  313. ["Default"] = false,
  314. ["HoverText"] = "Exploits like 5 item settings settings"
  315. })
  316. local InfJump = COB("Utility", {
  317. ["Name"] = "InfJump",
  318. ["Function"] = function(callback)
  319. if callback then
  320. pcall(function()
  321. ScriptSettings.InfJump = true
  322. game:GetService("UserInputService").JumpRequest:connect(function()
  323. if not ScriptSettings.InfJump == true then return end
  324. if not ScriptSettings.InfJump_Alr then
  325. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
  326. ScriptSettings.InfJump_Alr = true
  327. task.wait(0.125)
  328. ScriptSettings.InfJump_Alr = false
  329. else
  330. task.wait()
  331. end
  332. end)
  333. end)
  334. else
  335. pcall(function()
  336. ScriptSettings.InfJump = false
  337. end)
  338. end
  339. end,
  340. ["Default"] = false,
  341. ["HoverText"] = "Makes you can jump infinetly"
  342. })
  343. local MageAnimation = COB("Render", {
  344. ["Name"] = "MageAnimation",
  345. ["Function"] = function(callback)
  346. if callback then
  347. pcall(function()
  348. ScriptSettings.MageAnimation = true
  349. local Animate = game:GetService("Players").LocalPlayer.Character.Animate
  350. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
  351. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
  352. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
  353. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
  354. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
  355. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
  356. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
  357. end)
  358. else
  359. pcall(function()
  360. ScriptSettings.MageAnimation = false
  361. end)
  362. end
  363. end,
  364. ["Default"] = false,
  365. ["HoverText"] = "Makes you get mage animation (FE) for pvp"
  366. })
  367. local AnimDisabler = COB("Utility", {
  368. ["Name"] = "AnimDisabler",
  369. ["Function"] = function(callback)
  370. if callback then
  371. pcall(function()
  372. ScriptSettings.AnimDisabler = true
  373. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  374. while task.wait(1.5) do
  375. if not ScriptSettings.AnimDisabler == true then return end
  376. repeat task.wait() until game:GetService("Players").LocalPlayer.Character.Animate
  377. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  378. end
  379. end)
  380. else
  381. pcall(function()
  382. ScriptSettings.AnimDisabler = false
  383. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  384. end)
  385. end
  386. end,
  387. ["Default"] = false,
  388. ["HoverText"] = "Disables your animation"
  389. })
  390. local CollectAllDrops = COB("Utility", {
  391. ["Name"] = "CollectAllDrops broken",
  392. ["Function"] = function(callback)
  393. if callback then
  394. pcall(function()
  395. ScriptSettings.CollectAllDrops = true
  396. while task.wait() do
  397. if not ScriptSettings.CollectAllDrops == true then return end
  398. for i,v in pairs(game:GetService("Workspace").ItemDrops:GetChildren()) do
  399. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  400. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,2,0)
  401. end
  402. end
  403. end)
  404. else
  405. pcall(function()
  406. ScriptSettings.CollectAllDrops = false
  407. end)
  408. end
  409. end,
  410. ["Default"] = false,
  411. ["HoverText"] = "Collect drops broken"
  412. })
  413. local Shaders = COB("Render", {
  414. ["Name"] = "Shaders",
  415. ["Function"] = function(callback)
  416. if callback then
  417. pcall(function()
  418. print("shaders enabled")
  419. game:GetService("Lighting"):ClearAllChildren()
  420. local Bloom = Instance.new("BloomEffect")
  421. Bloom.Intensity = 0.1
  422. Bloom.Threshold = 0
  423. Bloom.Size = 100
  424.  
  425. local Tropic = Instance.new("Sky")
  426. Tropic.Name = "Tropic"
  427. Tropic.SkyboxUp = "http://www.roblox.com/asset/?id=169210149"
  428. Tropic.SkyboxLf = "http://www.roblox.com/asset/?id=169210133"
  429. Tropic.SkyboxBk = "http://www.roblox.com/asset/?id=169210090"
  430. Tropic.SkyboxFt = "http://www.roblox.com/asset/?id=169210121"
  431. Tropic.StarCount = 100
  432. Tropic.SkyboxDn = "http://www.roblox.com/asset/?id=169210108"
  433. Tropic.SkyboxRt = "http://www.roblox.com/asset/?id=169210143"
  434. Tropic.Parent = Bloom
  435.  
  436. local Sky = Instance.new("Sky")
  437. Sky.SkyboxUp = "http://www.roblox.com/asset/?id=196263782"
  438. Sky.SkyboxLf = "http://www.roblox.com/asset/?id=196263721"
  439. Sky.SkyboxBk = "http://www.roblox.com/asset/?id=196263721"
  440. Sky.SkyboxFt = "http://www.roblox.com/asset/?id=196263721"
  441. Sky.CelestialBodiesShown = false
  442. Sky.SkyboxDn = "http://www.roblox.com/asset/?id=196263643"
  443. Sky.SkyboxRt = "http://www.roblox.com/asset/?id=196263721"
  444. Sky.Parent = Bloom
  445.  
  446. Bloom.Parent = game:GetService("Lighting")
  447.  
  448. local Bloom = Instance.new("BloomEffect")
  449. Bloom.Enabled = false
  450. Bloom.Intensity = 0.35
  451. Bloom.Threshold = 0.2
  452. Bloom.Size = 56
  453.  
  454. local Tropic = Instance.new("Sky")
  455. Tropic.Name = "Tropic"
  456. Tropic.SkyboxUp = "http://www.roblox.com/asset/?id=169210149"
  457. Tropic.SkyboxLf = "http://www.roblox.com/asset/?id=169210133"
  458. Tropic.SkyboxBk = "http://www.roblox.com/asset/?id=169210090"
  459. Tropic.SkyboxFt = "http://www.roblox.com/asset/?id=169210121"
  460. Tropic.StarCount = 100
  461. Tropic.SkyboxDn = "http://www.roblox.com/asset/?id=169210108"
  462. Tropic.SkyboxRt = "http://www.roblox.com/asset/?id=169210143"
  463. Tropic.Parent = Bloom
  464.  
  465. local Sky = Instance.new("Sky")
  466. Sky.SkyboxUp = "http://www.roblox.com/asset/?id=196263782"
  467. Sky.SkyboxLf = "http://www.roblox.com/asset/?id=196263721"
  468. Sky.SkyboxBk = "http://www.roblox.com/asset/?id=196263721"
  469. Sky.SkyboxFt = "http://www.roblox.com/asset/?id=196263721"
  470. Sky.CelestialBodiesShown = false
  471. Sky.SkyboxDn = "http://www.roblox.com/asset/?id=196263643"
  472. Sky.SkyboxRt = "http://www.roblox.com/asset/?id=196263721"
  473. Sky.Parent = Bloom
  474.  
  475. Bloom.Parent = game:GetService("Lighting")
  476. local Blur = Instance.new("BlurEffect")
  477. Blur.Size = 2
  478.  
  479. Blur.Parent = game:GetService("Lighting")
  480. local Efecto = Instance.new("BlurEffect")
  481. Efecto.Name = "Efecto"
  482. Efecto.Enabled = false
  483. Efecto.Size = 2
  484.  
  485. Efecto.Parent = game:GetService("Lighting")
  486. local Inaritaisha = Instance.new("ColorCorrectionEffect")
  487. Inaritaisha.Name = "Inari taisha"
  488. Inaritaisha.Saturation = 0.05
  489. Inaritaisha.TintColor = Color3.fromRGB(255, 224, 219)
  490.  
  491. Inaritaisha.Parent = game:GetService("Lighting")
  492. local Normal = Instance.new("ColorCorrectionEffect")
  493. Normal.Name = "Normal"
  494. Normal.Enabled = false
  495. Normal.Saturation = -0.2
  496. Normal.TintColor = Color3.fromRGB(255, 232, 215)
  497.  
  498. Normal.Parent = game:GetService("Lighting")
  499. local SunRays = Instance.new("SunRaysEffect")
  500. SunRays.Intensity = 0.05
  501.  
  502. SunRays.Parent = game:GetService("Lighting")
  503. local Sunset = Instance.new("Sky")
  504. Sunset.Name = "Sunset"
  505. Sunset.SkyboxUp = "rbxassetid://323493360"
  506. Sunset.SkyboxLf = "rbxassetid://323494252"
  507. Sunset.SkyboxBk = "rbxassetid://323494035"
  508. Sunset.SkyboxFt = "rbxassetid://323494130"
  509. Sunset.SkyboxDn = "rbxassetid://323494368"
  510. Sunset.SunAngularSize = 14
  511. Sunset.SkyboxRt = "rbxassetid://323494067"
  512.  
  513. Sunset.Parent = game:GetService("Lighting")
  514. local Takayama = Instance.new("ColorCorrectionEffect")
  515. Takayama.Name = "Takayama"
  516. Takayama.Enabled = false
  517. Takayama.Saturation = -0.3
  518. Takayama.Contrast = 0.1
  519. Takayama.TintColor = Color3.fromRGB(235, 214, 204)
  520.  
  521. Takayama.Parent = game:GetService("Lighting")
  522. local L = game:GetService("Lighting")
  523. L.Brightness = 2.14
  524. L.ColorShift_Bottom = Color3.fromRGB(11, 0, 20)
  525. L.ColorShift_Top = Color3.fromRGB(240, 127, 14)
  526. L.OutdoorAmbient = Color3.fromRGB(34, 0, 49)
  527. L.ClockTime = 6.7
  528. L.FogColor = Color3.fromRGB(94, 76, 106)
  529. L.FogEnd = 1000
  530. L.FogStart = 0
  531. L.ExposureCompensation = 0.24
  532. L.ShadowSoftness = 0
  533. L.Ambient = Color3.fromRGB(59, 33, 27)
  534.  
  535. local Bloom = Instance.new("BloomEffect")
  536. Bloom.Intensity = 0.1
  537. Bloom.Threshold = 0
  538. Bloom.Size = 100
  539.  
  540. local Tropic = Instance.new("Sky")
  541. Tropic.Name = "Tropic"
  542. Tropic.SkyboxUp = "http://www.roblox.com/asset/?id=169210149"
  543. Tropic.SkyboxLf = "http://www.roblox.com/asset/?id=169210133"
  544. Tropic.SkyboxBk = "http://www.roblox.com/asset/?id=169210090"
  545. Tropic.SkyboxFt = "http://www.roblox.com/asset/?id=169210121"
  546. Tropic.StarCount = 100
  547. Tropic.SkyboxDn = "http://www.roblox.com/asset/?id=169210108"
  548. Tropic.SkyboxRt = "http://www.roblox.com/asset/?id=169210143"
  549. Tropic.Parent = Bloom
  550.  
  551. local Sky = Instance.new("Sky")
  552. Sky.SkyboxUp = "http://www.roblox.com/asset/?id=196263782"
  553. Sky.SkyboxLf = "http://www.roblox.com/asset/?id=196263721"
  554. Sky.SkyboxBk = "http://www.roblox.com/asset/?id=196263721"
  555. Sky.SkyboxFt = "http://www.roblox.com/asset/?id=196263721"
  556. Sky.CelestialBodiesShown = false
  557. Sky.SkyboxDn = "http://www.roblox.com/asset/?id=196263643"
  558. Sky.SkyboxRt = "http://www.roblox.com/asset/?id=196263721"
  559. Sky.Parent = Bloom
  560.  
  561. Bloom.Parent = game:GetService("Lighting")
  562.  
  563. local Bloom = Instance.new("BloomEffect")
  564. Bloom.Enabled = false
  565. Bloom.Intensity = 0.35
  566. Bloom.Threshold = 0.2
  567. Bloom.Size = 56
  568.  
  569. local Tropic = Instance.new("Sky")
  570. Tropic.Name = "Tropic"
  571. Tropic.SkyboxUp = "http://www.roblox.com/asset/?id=169210149"
  572. Tropic.SkyboxLf = "http://www.roblox.com/asset/?id=169210133"
  573. Tropic.SkyboxBk = "http://www.roblox.com/asset/?id=169210090"
  574. Tropic.SkyboxFt = "http://www.roblox.com/asset/?id=169210121"
  575. Tropic.StarCount = 100
  576. Tropic.SkyboxDn = "http://www.roblox.com/asset/?id=169210108"
  577. Tropic.SkyboxRt = "http://www.roblox.com/asset/?id=169210143"
  578. Tropic.Parent = Bloom
  579.  
  580. local Sky = Instance.new("Sky")
  581. Sky.SkyboxUp = "http://www.roblox.com/asset/?id=196263782"
  582. Sky.SkyboxLf = "http://www.roblox.com/asset/?id=196263721"
  583. Sky.SkyboxBk = "http://www.roblox.com/asset/?id=196263721"
  584. Sky.SkyboxFt = "http://www.roblox.com/asset/?id=196263721"
  585. Sky.CelestialBodiesShown = false
  586. Sky.SkyboxDn = "http://www.roblox.com/asset/?id=196263643"
  587. Sky.SkyboxRt = "http://www.roblox.com/asset/?id=196263721"
  588. Sky.Parent = Bloom
  589.  
  590. Bloom.Parent = game:GetService("Lighting")
  591. local Blur = Instance.new("BlurEffect")
  592. Blur.Size = 2
  593.  
  594. Blur.Parent = game:GetService("Lighting")
  595. local Efecto = Instance.new("BlurEffect")
  596. Efecto.Name = "Efecto"
  597. Efecto.Enabled = false
  598. Efecto.Size = 4
  599.  
  600. Efecto.Parent = game:GetService("Lighting")
  601. local Inaritaisha = Instance.new("ColorCorrectionEffect")
  602. Inaritaisha.Name = "Inari taisha"
  603. Inaritaisha.Saturation = 0.05
  604. Inaritaisha.TintColor = Color3.fromRGB(255, 224, 219)
  605.  
  606. Inaritaisha.Parent = game:GetService("Lighting")
  607. local Normal = Instance.new("ColorCorrectionEffect")
  608. Normal.Name = "Normal"
  609. Normal.Enabled = false
  610. Normal.Saturation = -0.2
  611. Normal.TintColor = Color3.fromRGB(255, 232, 215)
  612.  
  613. Normal.Parent = game:GetService("Lighting")
  614. local SunRays = Instance.new("SunRaysEffect")
  615. SunRays.Intensity = 0.05
  616.  
  617. SunRays.Parent = game:GetService("Lighting")
  618. local Sunset = Instance.new("Sky")
  619. Sunset.Name = "Sunset"
  620. Sunset.SkyboxUp = "rbxassetid://323493360"
  621. Sunset.SkyboxLf = "rbxassetid://323494252"
  622. Sunset.SkyboxBk = "rbxassetid://323494035"
  623. Sunset.SkyboxFt = "rbxassetid://323494130"
  624. Sunset.SkyboxDn = "rbxassetid://323494368"
  625. Sunset.SunAngularSize = 14
  626. Sunset.SkyboxRt = "rbxassetid://323494067"
  627.  
  628. Sunset.Parent = game:GetService("Lighting")
  629. local Takayama = Instance.new("ColorCorrectionEffect")
  630. Takayama.Name = "Takayama"
  631. Takayama.Enabled = false
  632. Takayama.Saturation = -0.3
  633. Takayama.Contrast = 0.1
  634. Takayama.TintColor = Color3.fromRGB(235, 214, 204)
  635.  
  636. Takayama.Parent = game:GetService("Lighting")
  637. local L = game:GetService("Lighting")
  638. L.Brightness = 2.3
  639. L.ColorShift_Bottom = Color3.fromRGB(11, 0, 20)
  640. L.ColorShift_Top = Color3.fromRGB(240, 127, 14)
  641. L.OutdoorAmbient = Color3.fromRGB(34, 0, 49)
  642. L.TimeOfDay = "07:30:00"
  643. L.FogColor = Color3.fromRGB(94, 76, 106)
  644. L.FogEnd = 300
  645. L.FogStart = 0
  646. L.ExposureCompensation = 0.24
  647. L.ShadowSoftness = 0
  648. L.Ambient = Color3.fromRGB(59, 33, 27)
  649. end)
  650. else
  651. pcall(function()
  652. print("shaders disabled")
  653. end)
  654. end
  655. end,
  656. ["Default"] = false,
  657. ["HoverText"] = "Cool shader"
  658. })
  659. local HostCrasher = COB("Utility", {
  660. ["Name"] = "HostCrasher",
  661. ["Function"] = function(callback)
  662. if callback then
  663. pcall(function()
  664. ScriptSettings.HostCrasher = true
  665. for i,plr in pairs(game:GetService("Players"):GetChildren()) do
  666. local args = {
  667. [1] = "",
  668. [2] = {
  669. [1] = {
  670. ["userId"] = plr.UserId,
  671. ["name"] = plr.Name,
  672. ["displayName"] = plr.DisplayName
  673. }
  674. }
  675. }
  676. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("CustomMatches:CohostPlayer"):FireServer(unpack(args))
  677. end
  678. while task.wait() do
  679. if not ScriptSettings.HostCrasher == true then return end
  680. for i,plr in pairs(game:GetService("Players"):GetChildren()) do
  681. local args = {
  682. [1] = "",
  683. [2] = {
  684. [1] = {
  685. ["userId"] = plr.UserId,
  686. ["name"] = plr.Name,
  687. ["displayName"] = plr.DisplayName
  688. },
  689. [2] = math.random(1,999999999)
  690. }
  691. }
  692. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged:FindFirstChild("CustomMatches:SetPlayerMaxHealth"):FireServer(unpack(args))
  693. end
  694. end
  695. end)
  696. else
  697. pcall(function()
  698. ScriptSettings.HostCrasher = false
  699. end)
  700. end
  701. end,
  702. ["Default"] = false,
  703. ["HoverText"] = "Requires you to be host to let it work"
  704. })
  705. local Crosshair = COB("Render", {
  706. ["Name"] = "Crosshair",
  707. ["Function"] = function(callback)
  708. if callback then
  709. pcall(function()
  710. ScriptSettings.Crosshair = true
  711. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  712. mouse.Icon = "rbxassetid://9943168532"
  713. mouse:GetPropertyChangedSignal("Icon"):Connect(function()
  714. if not ScriptSettings.Crosshair == true then return end
  715. mouse.Icon = "rbxassetid://9943168532"
  716. end)
  717. end)
  718. else
  719. pcall(function()
  720. ScriptSettings.Crosshair = false
  721. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  722. mouse.Icon = ""
  723. end)
  724. end
  725. end,
  726. ["Default"] = false,
  727. ["HoverText"] = "Custom crosshair"
  728. })
  729. local Reinject = COB("Utility", {
  730. ["Name"] = "Reinject",
  731. ["Function"] = function(callback)
  732. if callback then
  733. pcall(function()
  734. ScriptSettings.Reinject = true
  735. infonotify("Reinject", "Please disable reinject to use.", 5)
  736. end)
  737. else
  738. pcall(function()
  739. ScriptSettings.Reinject = false
  740. GuiLibrary["SelfDestruct"]()
  741. if shared.DogV4Private_AutoExec then shared.Restart_Vape() else infonotify("Reinject", "You do not have Dog V4 Reinject supported.", "5") end
  742. end)
  743. end
  744. end,
  745. ["Default"] = false,
  746. ["HoverText"] = "Reinjects vape"
  747. })
  748. local Night = COB("Render", {
  749. ["Name"] = "Night",
  750. ["Function"] = function(callback)
  751. if callback then
  752. pcall(function()
  753. ScriptSettings.Night = true
  754. game:GetService("Lighting").TimeOfDay = "00:00:00"
  755. while task.wait(5) do
  756. if not ScriptSettings.Night == true then return end
  757. game:GetService("Lighting").TimeOfDay = "00:00:00"
  758. end
  759. end)
  760. else
  761. pcall(function()
  762. ScriptSettings.Night = false
  763. game:GetService("Lighting").TimeOfDay = "13:00:00"
  764. end)
  765. end
  766. end,
  767. ["Default"] = false,
  768. ["HoverText"] = "Cool night render"
  769. })
  770. local ChatCrasher = COB("Utility", {
  771. ["Name"] = "ChatCrasher",
  772. ["Function"] = function(callback)
  773. if callback then
  774. pcall(function()
  775. ScriptSettings.ChatCrasher = true
  776. while task.wait() do
  777. if not ScriptSettings.ChatCrasher == true then return end
  778. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼᲼", "All")
  779. end
  780. end)
  781. else
  782. pcall(function()
  783. ScriptSettings.ChatCrasher = false
  784. end)
  785. end
  786. end,
  787. ["Default"] = false,
  788. ["HoverText"] = "cool"
  789. })
  790. local AntiAFK = COB("Render", {
  791. ["Name"] = "AntiAFK",
  792. ["Function"] = function(callback)
  793. if callback then
  794. pcall(function()
  795. ScriptSettings.AntiAFK = true
  796. local cons = getconnections or get_signal_cons
  797. if cons then
  798. for i,v in pairs(cons(game:GetService("Players").LocalPlayer.Idled)) do
  799. if ScriptSettings.AntiAFK == true then
  800. v:Disable()
  801. v:Disconnect()
  802. end
  803. end
  804. end
  805. assert(firesignal, "Asserted FireSignal")
  806. local uis = game:GetService("UserInputService")
  807. local runs = game:GetService("RUnService")
  808. uis.WindowFocusReleased:Connect(function()
  809. if ScriptSettings.AntiAFK == true then
  810. runs.Stepped:Wait()
  811. pcall(firesignal, uis.WindowFocused)
  812. end
  813. end)
  814. end)
  815. else
  816. pcall(function()
  817. ScriptSettings.AntiAFK = false
  818. end)
  819. end
  820. end,
  821. ["Default"] = false,
  822. ["HoverText"] = "No more AFK kicks, wow, another untoggable module i made toggable"
  823. })
  824. local CustomAntivoid = COB("Utility", {
  825. ["Name"] = "CustomAntivoid",
  826. ["Function"] = function(callback)
  827. if callback then
  828. pcall(function()
  829. ScriptSettings.CustomAntivoid = true
  830. --repeat task.wait(0.3) until getstate() == 1
  831. local part = Instance.new("Part")
  832. part.Name = "AVOID_PART"
  833. part.Anchored = true
  834. part.Color = Color3.fromRGB(255,65,65)
  835. part.Size = Vector3.new(5000,3,5000)
  836. part.Parent = game:GetService("Workspace")
  837. part.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame - Vector3.new(0,20,0)
  838. ScriptSettings.CustomAntivoid_Part = part
  839. part.Touched:Connect(function(v)
  840. if v.Parent:FindFirstChild("Humanoid") and v.Parent.Parent.Name == game:GetService("Players").LocalPlayer.Name and not v.Parent:FindFirstChild("Humanoid").Health == 0 then
  841. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  842. task.wait(0.12)
  843. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  844. task.wait(0.12)
  845. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  846. task.wait(0.12)
  847. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  848. --[[
  849. local tptimes = 0
  850. repeat
  851. task.wait()
  852. tptimes = tptimes + 1
  853. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame / 2
  854. until tptimes = 10
  855. ]]--
  856. end
  857. end)
  858. end)
  859. else
  860. pcall(function()
  861. ScriptSettings.CustomAntivoid = false
  862. ScriptSettings.CustomAntivoid_Part:Destroy()
  863. end)
  864. end
  865. end,
  866. ["Default"] = false,
  867. ["HoverText"] = "custom anti void (broken on beach map)"
  868. })
  869. local RagdollDisabler = COB("Utility", {
  870. ["Name"] = "RagdollDisabler",
  871. ["Function"] = function(callback)
  872. if callback then
  873. pcall(function()
  874. ScriptSettings.RagdollDisabler = true
  875. while task.wait(0.1) do
  876. if not ScriptSettings.RagdollDisabler == true then return end
  877. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Ragdoll)
  878. task.wait(0.085)
  879. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Running)
  880. end
  881. end)
  882. else
  883. pcall(function()
  884. ScriptSettings.RagdollDisabler = false
  885. end)
  886. end
  887. end,
  888. ["Default"] = false,
  889. ["HoverText"] = "Makes you ragdoll to bypass anticheat"
  890. })
  891. local LandmindeAura = COB("Blatant", {
  892. ["Name"] = "LandmindeAura",
  893. ["Function"] = function(callback)
  894. if callback then
  895. pcall(function()
  896. ScriptSettings.LandmindeAura = true
  897. while task.wait(0.15) do
  898. if not ScriptSettings.LandmindeAura == true then return end
  899. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  900. if not v.Name == game:GetService("Players").LocalPlayer.Name then
  901. local mag = (v.Character:FindFirstChild("HumanoidRootPart").Position - game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").Position).magnitude
  902. if mag > 11 then
  903. if not v.Team.BrickColor == game:GetService("Players").LocalPlayer.Team.BrickColor then
  904. if not v.Team.Name == game:GetService("Players").LocalPlayer.Team.Name then
  905. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged["landmineremote"]:FireServer({
  906. ["invisibleLandmine"] = v.Character:FindFirstChild("Head")
  907. })
  908. end
  909. end
  910. end
  911. end
  912. end
  913. end
  914. end)
  915. else
  916. pcall(function()
  917. ScriptSettings.LandmindeAura = false
  918. end)
  919. end
  920. end,
  921. ["Default"] = false,
  922. ["HoverText"] = "(Actually) a dumb aura i made"
  923. })
  924. local BiMode_Blur
  925. local BiMode = COB("Render", {
  926. ["Name"] = "BiMode",
  927. ["Function"] = function(callback)
  928. if callback then
  929. pcall(function()
  930. ScriptSettings.BiMode = true
  931. game:GetService("Lighting").Ambient = Color3.fromRGB(130, 12, 110)
  932. game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(130, 12, 110)
  933. game:GetService("Lighting").ColorShift_Bottom = Color3.fromRGB(130, 12, 110)
  934. game:GetService("Lighting").ColorShift_Top = Color3.fromRGB(130, 12, 110)
  935. game:GetService("Lighting").TimeOfDay = "03:00:00"
  936. game:GetService("Lighting").FogColor = Color3.fromRGB(130, 12, 110)
  937. game:GetService("Lighting").FogStart = 500
  938. game:GetService("Lighting").FogEnd = 100000
  939. game:GetService("Lighting").ExposureCompensation = 1
  940. BiMode_Blur = Instance.new("Blur")
  941. local blurx = BiMode_Blur
  942. blurx.Size = 4
  943. blurx.Name = game:GetService("HttpService"):GenerateGUID(true)
  944. end)
  945. else
  946. pcall(function()
  947. ScriptSettings.BiMode = false
  948. game:GetService("Lighting").Ambient = Color3.fromRGB(165, 165, 165)
  949. game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(104, 104, 104)
  950. game:GetService("Lighting").ColorShift_Bottom = Color3.fromRGB(146, 190, 255)
  951. game:GetService("Lighting").ColorShift_Top = Color3.fromRGB(228, 249, 255)
  952. game:GetService("Lighting").TimeOfDay = "13:00:00"
  953. game:GetService("Lighting").FogColor = Color3.fromRGB(255, 255, 255)
  954. game:GetService("Lighting").FogStart = 0
  955. game:GetService("Lighting").FogEnd = 100000
  956. game:GetService("Lighting").ExposureCompensation = 0
  957. if BiMode_Blur then BiMode_Blur:Destroy() end
  958. end)
  959. end
  960. end,
  961. ["Default"] = false,
  962. ["HoverText"] = "ok"
  963. })
  964. local SlowAutoWin = COB("Utility", {
  965. ["Name"] = "SlowAutoWin broken?",
  966. ["Function"] = function(callback)
  967. if callback then
  968. pcall(function()
  969. ScriptSettings.SlowAutoWin = true
  970. local char = game:GetService("Players").LocalPlayer.Character
  971. char:FindFirstChild("HumanoidRootPart").CFrame = char:FindFirstChild("HumanoidRootPart").CFrame + Vector3.new(0,99,0)
  972. char:FindFirstChild("Head").Anchored = true
  973. char:FindFirstChild("UpperTorso").Anchored = true
  974. char:FindFirstChild("UpperTorso").Anchored = true
  975. char:FindFirstChild("HumanoidRootPart"):Destroy()
  976. end)
  977. else
  978. pcall(function()
  979. ScriptSettings.SlowAutoWin = false
  980. infonotify("SlowAutoWin", "Unable to revert changes", "5")
  981. end)
  982. end
  983. end,
  984. ["Default"] = false,
  985. ["HoverText"] = "advanced hrp destroyer broken?"
  986. })
  987. local InviteCrash = COB("Utility", {
  988. ["Name"] = "InviteCrash",
  989. ["Function"] = function(callback)
  990. if callback then
  991. pcall(function()
  992. ScriptSettings.InviteCrash = true
  993. while task.wait() do
  994. if not ScriptSettings.InviteCrash == true then return end
  995. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  996. if not v.Name == game:GetService("Players").LocalPlayer.Name then
  997. game:GetService("ReplicatedStorage")["events-@easy-games/lobby:shared/event/lobby-events@getEvents.Events"].inviteToParty:FireServer({["player"] = game:GetService("Players")[v.Name],})
  998. end
  999. end
  1000. end
  1001. end)
  1002. else
  1003. pcall(function()
  1004. ScriptSettings.InviteCrash = false
  1005. end)
  1006. end
  1007. end,
  1008. ["Default"] = false,
  1009. ["HoverText"] = "Spam invites other players"
  1010. })
  1011.  
  1012.  
Add Comment
Please, Sign In to add comment