R

skripts [state]

public
rrixh Apr 29, 2024 Never 106
Clone
Lua skripts_lulaslollipop 526 lines (418 loc) | 18.15 KB
1
-- Roblox Exploit Script with 50 Additional ×_× Exploits
2
3
-- Infinite Jump Exploit
4
game:GetService("UserInputService").JumpRequest:connect(function()
5
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
6
end)
7
8
-- Fly Exploit
9
local flySpeed = 250 -- Adjust this value as needed
10
11
game:GetService("UserInputService").InputBegan:connect(function(input)
12
if input.KeyCode == Enum.KeyCode.Space then
13
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Flying")
14
end
15
end)
16
17
game:GetService("UserInputService").InputEnded:connect(function(input)
18
if input.KeyCode == Enum.KeyCode.Space then
19
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Seated")
20
end
21
end)
22
23
-- Speed Exploit
24
local speed = 100 -- Adjust this value as needed
25
26
game:GetService("RunService").Stepped:connect(function()
27
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = speed
28
end)
29
30
-- NoClip Exploit
31
local noclip = false
32
33
game:GetService("RunService").Stepped:connect(function()
34
if noclip then
35
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState(11)
36
end
37
end)
38
39
-- Toggle NoClip Function
40
game:GetService("UserInputService").InputBegan:connect(function(input)
41
if input.KeyCode == Enum.KeyCode.N then
42
noclip = not noclip
43
end
44
end)
45
46
-- God Mode Exploit
47
local godMode = false
48
49
game:GetService("RunService").Stepped:connect(function()
50
if godMode then
51
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").MaxHealth = math.huge
52
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").Health = math.huge
53
end
54
end)
55
56
-- Toggle God Mode Function
57
game:GetService("UserInputService").InputBegan:connect(function(input)
58
if input.KeyCode == Enum.KeyCode.G then
59
godMode = not godMode
60
end
61
end)
62
63
-- Teleport Exploit
64
local targetPosition = Vector3.new(0, 100, 0) -- Adjust the position as needed
65
66
game:GetService("UserInputService").InputBegan:connect(function(input)
67
if input.KeyCode == Enum.KeyCode.T then
68
game.Players.LocalPlayer.Character:SetPrimaryPartCFrame(CFrame.new(targetPosition))
69
end
70
end)
71
72
-- Kill Player Exploit
73
local killPlayer = false
74
75
game:GetService("UserInputService").InputBegan:connect(function(input)
76
if input.KeyCode == Enum.KeyCode.K then
77
game.Players.LocalPlayer.Character:BreakJoints()
78
end
79
end)
80
81
-- Anti-AFK Exploit
82
local antiAFK = false
83
84
game:GetService("Players").LocalPlayer.Idled:connect(function()
85
if antiAFK then
86
game:GetService("VirtualUser"):CaptureController()
87
game:GetService("VirtualUser"):ClickButton2(Vector2.new())
88
end
89
end)
90
91
-- Toggle Anti-AFK Function
92
game:GetService("UserInputService").InputBegan:connect(function(input)
93
if input.KeyCode == Enum.KeyCode.A then
94
antiAFK = not antiAFK
95
end
96
end)
97
98
-- Invisible Character Exploit
99
local invisible = false
100
101
game:GetService("RunService").Stepped:connect(function()
102
if invisible then
103
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").Transparency = 1
104
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CanCollide = false
105
end
106
end)
107
108
-- Toggle Invisible Character Function
109
game:GetService("UserInputService").InputBegan:connect(function(input)
110
if input.KeyCode == Enum.KeyCode.I then
111
invisible = not invisible
112
end
113
end)
114
115
-- Kill All Players Exploit
116
local killAll = false
117
118
game:GetService("UserInputService").InputBegan:connect(function(input)
119
if input.KeyCode == Enum.KeyCode.X then
120
if killAll then
121
for _, player in pairs(game.Players:GetPlayers()) do
122
player.Character:BreakJoints()
123
end
124
end
125
end
126
end)
127
128
-- Infinite Yield Exploit
129
game:GetService("UserInputService").InputBegan:connect(function(input)
130
if input.KeyCode == Enum.KeyCode.Y then
131
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
132
end
133
end)
134
135
-- Server Crash Exploit
136
game:GetService("UserInputService").InputBegan:connect(function(input)
137
if input.KeyCode == Enum.KeyCode.Z then
138
while true do
139
wait(1)
140
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):FindFirstChild("ServerEvent"):FireServer()
141
end
142
end
143
end)
144
145
-- Disable Filtering Enabled Exploit
146
game:GetService("UserInputService").InputBegan:connect(function(input)
147
if input.KeyCode == Enum.KeyCode.F then
148
game:GetService("ReplicatedStorage"):WaitForChild("RemoteFunction"):InvokeServer()
149
end
150
end)
151
152
-- Super Jump Exploit
153
local jumpHeight = 100 -- Adjust this value as needed
154
155
game:GetService("UserInputService").InputBegan:connect(function(input)
156
if input.KeyCode == Enum.KeyCode.J then
157
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").JumpHeight = jumpHeight
158
end
159
end)
160
161
-- Toggle Super Jump Function
162
game:GetService("UserInputService").InputBegan:connect(function(input)
163
if input.KeyCode == Enum.KeyCode.S then
164
jumpHeight = jumpHeight == 100 and 500 or 100
165
end
166
end)
167
168
-- Bypass Chat Filter Exploit
169
game:GetService("Players").LocalPlayer.Chatted:connect(function(message)
170
if string.find(message:lower(), "badword") then
171
game:GetService("ReplicatedStorage"):FindFirstChild("DefaultChatSystemChatEvents"):FindFirstChild("SayMessageRequest"):FireServer("I'm breaking the rules!", "All")
172
end
173
end)
174
175
-- Kill NPCs Exploit
176
game:GetService("UserInputService").InputBegan:connect(function(input)
177
if input.KeyCode == Enum.KeyCode.P then
178
for _, npc in pairs(game.Workspace:GetChildren()) do
179
if npc:IsA("Model") and npc:FindFirstChildOfClass("Humanoid") then
180
npc:FindFirstChildOfClass("Humanoid"):TakeDamage(math.huge)
181
end
182
end
183
end
184
end)
185
186
-- Godmode NPCs Exploit
187
game:GetService("UserInputService").InputBegan:connect(function(input)
188
if input.KeyCode == Enum.KeyCode.O then
189
for _, npc in pairs(game.Workspace:GetChildren()) do
190
if npc:IsA("Model") and npc:FindFirstChildOfClass("Humanoid") then
191
npc:FindFirstChildOfClass("Humanoid").MaxHealth = math.huge
192
npc:FindFirstChildOfClass("Humanoid").Health = math.huge
193
end
194
end
195
end
196
end)
197
198
-- Teleport All Players Exploit
199
local targetPosition = Vector3.new(0, 100, 0) -- Adjust the position as needed
200
201
game:GetService("UserInputService").InputBegan:connect(function(input)
202
if input.KeyCode == Enum.KeyCode.U then
203
for _, player in pairs(game.Players:GetPlayers()) do
204
player.Character:SetPrimaryPartCFrame(CFrame.new(targetPosition))
205
end
206
end
207
end)
208
209
-- Loop Kill Player Exploit
210
game:GetService("UserInputService").InputBegan:connect(function(input)
211
if input.KeyCode == Enum.KeyCode.L then
212
while true do
213
wait(1)
214
game.Players.LocalPlayer.Character:BreakJoints()
215
end
216
end
217
end)
218
219
-- Infinite Cash Exploit
220
game:GetService("UserInputService").InputBegan:connect(function(input)
221
if input.KeyCode == Enum.KeyCode.C then
222
while true do
223
wait(0.1)
224
game:GetService("ReplicatedStorage").Currency:FireServer(99999999)
225
end
226
end
227
end)
228
229
-- Weapon Giver Exploit
230
local weapon = "AK47" -- Change to the desired weapon
231
232
game:GetService("UserInputService").InputBegan:connect(function(input)
233
if input.KeyCode == Enum.KeyCode.W then
234
game:GetService("ReplicatedStorage").Weapons[weapon]:Clone().Parent = game.Players.LocalPlayer.Backpack
235
end
236
end)
237
238
-- Remove All Weapons Exploit
239
game:GetService("UserInputService").InputBegan:connect(function(input)
240
if input.KeyCode == Enum.KeyCode.R then
241
for _, item in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
242
if item:IsA("Tool") then
243
item:Destroy()
244
end
245
end
246
end
247
end)
248
249
-- Disable Fall Damage Exploit
250
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").Died:Connect(function()
251
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").Health = math.huge
252
end)
253
254
-- Infinite Double Jump Exploit
255
game:GetService("UserInputService").JumpRequest:connect(function()
256
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
257
end)
258
259
game:GetService("UserInputService").InputBegan:connect(function(input)
260
if input.KeyCode == Enum.KeyCode.Space then
261
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
262
end
263
end)
264
265
-- Rainbowify Character Exploit
266
local rainbowColors = {Color3.fromRGB(255, 0, 0), Color3.fromRGB(255, 165, 0), Color3.fromRGB(255, 255, 0), Color3.fromRGB(0, 255, 0), Color3.fromRGB(0, 127, 255), Color3.fromRGB(0, 0, 255), Color3.fromRGB(139, 0, 255)} -- Add more colors if needed
267
268
local function rainbowify()
269
local character = game.Players.LocalPlayer.Character
270
for _, part in pairs(character:GetDescendants()) do
271
if part:IsA("BasePart") then
272
part.Color = rainbowColors[math.random(1, #rainbowColors)]
273
end
274
end
275
end
276
277
while true do
278
wait(0.1)
279
rainbowify()
280
end
281
282
-- Forcefield Exploit
283
local function toggleForcefield()
284
local character = game.Players.LocalPlayer.Character
285
if character:FindFirstChildOfClass("ForceField") then
286
character:FindFirstChildOfClass("ForceField"):Destroy()
287
else
288
local forceField = Instance.new("ForceField")
289
forceField.Parent = character
290
end
291
end
292
293
game:GetService("UserInputService").InputBegan:connect(function(input)
294
if input.KeyCode == Enum.KeyCode.F then
295
toggleForcefield()
296
end
297
end)
298
299
-- Nuke Exploit
300
game:GetService("UserInputService").InputBegan:connect(function(input)
301
if input.KeyCode == Enum.KeyCode.N then
302
for _, part in pairs(game.Workspace:GetChildren()) do
303
if part:IsA("BasePart") then
304
part:Destroy()
305
end
306
end
307
end
308
end)
309
310
-- Gravity Exploit
311
local gravity = 196.2 -- Adjust this value as needed
312
313
game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState("Jumping")
314
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0, gravity, 0)
315
316
-- Portal Gun Exploit
317
game:GetService("UserInputService").InputBegan:connect(function(input)
318
if input.KeyCode == Enum.KeyCode.P then
319
local portalGun = game.Players.LocalPlayer.Backpack:FindFirstChild("PortalGun")
320
if portalGun then
321
local portal1 = Instance.new("Part")
322
portal1.Anchored = true
323
portal1.Size = Vector3.new(5, 10, 1)
324
portal1.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
325
portal1.BrickColor = BrickColor.new("Bright blue")
326
portal1.Transparency = 0.5
327
portal1.CanCollide = false
328
portal1.Parent = game.Workspace
329
330
local portal2 = portal1:Clone()
331
portal2.BrickColor = BrickColor.new("Bright orange")
332
portal2.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(10, 0, 0)
333
portal2.Parent = game.Workspace
334
335
portalGun:Destroy()
336
end
337
end
338
end)
339
340
-- Rocket Launcher Exploit
341
game:GetService("UserInputService").InputBegan:connect(function(input)
342
if input.KeyCode == Enum.KeyCode.R then
343
local rocketLauncher = game.Players.LocalPlayer.Backpack:FindFirstChild("RocketLauncher")
344
if rocketLauncher then
345
local rocket = Instance.new("Part")
346
rocket.Size = Vector3.new(2, 2, 4)
347
rocket.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 10, 0)
348
rocket.BrickColor = BrickColor.new("Bright red")
349
rocket.CanCollide = false
350
rocket.Anchored = true
351
rocket.Parent = game.Workspace
352
353
local bodyVelocity = Instance.new("BodyVelocity")
354
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
355
bodyVelocity.Velocity = Vector3.new(0, 100, 0)
356
bodyVelocity.Parent = rocket
357
358
local explosion = Instance.new("Explosion")
359
explosion.Position = rocket.Position
360
explosion.BlastRadius = 10
361
explosion.BlastPressure = 50000
362
explosion.Parent = game.Workspace
363
364
rocketLauncher:Destroy()
365
end
366
end
367
end)
368
369
-- Set Time Exploit
370
local desiredTime = "12:00:00" -- Adjust this value as needed
371
372
game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("MainScreenGui"):WaitForChild("ClockGui").Time.Text = desiredTime
373
374
-- Change Weather Exploit
375
local desiredWeather = "Sunny" -- Adjust this value as needed
376
377
game:GetService("ReplicatedStorage"):WaitForChild("Weather"):WaitForChild("CurrentWeather").Value = desiredWeather
378
379
-- Disguise Exploit
380
local desiredDisguise = "Cow" -- Adjust this value as needed
381
382
game.Players.LocalPlayer.CharacterAppearanceId = desiredDisguise
383
384
-- Infinite Ammo Exploit
385
local gunName = "M4A1" -- Adjust this value as needed
386
387
game:GetService("Players").LocalPlayer.Backpack:WaitForChild(gunName).Ammo.Value = math.huge
388
389
-- Fake Ban Exploit
390
local playerName = "ExampleUser" -- Adjust this value as needed
391
392
game:GetService("ReplicatedStorage").BanList[playerName].Value = true
393
394
-- Custom Emote Exploit
395
local desiredEmote = "Dance" -- Adjust this value as needed
396
397
game:GetService("ReplicatedStorage"):WaitForChild("Emotes"):WaitForChild("CustomEmote"):FireServer(desiredEmote)
398
399
-- Unban Exploit
400
local bannedPlayer = "ExampleUser" -- Adjust this value as needed
401
402
game:GetService("ReplicatedStorage").BanList[bannedPlayer].Value = false
403
404
-- Freeze Player Exploit
405
local targetPlayer = game.Players.LocalPlayer.Name -- Adjust this value as needed
406
407
game:GetService("ReplicatedStorage").FreezePlayer:FireServer(targetPlayer)
408
409
-- Antigravity Exploit
410
local antigravity = false
411
412
game:GetService("RunService").Stepped:connect(function()
413
if antigravity then
414
game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").HipHeight = 0
415
end
416
end)
417
418
-- Toggle Antigravity Function
419
game:GetService("UserInputService").InputBegan:connect(function(input)
420
if input.KeyCode == Enum.KeyCode.G then
421
antigravity = not antigravity
422
end
423
end)
424
425
-- Force Teleport Exploit
426
local targetPlayer = "ExampleUser" -- Adjust this value as needed
427
428
game:GetService("ReplicatedStorage"):WaitForChild("TeleportPlayer"):FireServer(targetPlayer)
429
430
-- Music Player Exploit
431
local musicId = 123456789 -- Adjust this value as needed
432
433
game:GetService("ReplicatedStorage"):WaitForChild("MusicPlayer"):FireServer(musicId)
434
435
-- Troll Exploit
436
local targetPlayer = "ExampleUser" -- Adjust this value as needed
437
438
game:GetService("ReplicatedStorage"):WaitForChild("TrollPlayer"):FireServer(targetPlayer)
439
440
-- Lag Exploit
441
game:GetService("ReplicatedStorage"):WaitForChild("Lag"):FireServer()
442
443
-- Force Respawn Exploit
444
game.Players.LocalPlayer:LoadCharacter()
445
446
-- AFK Farming Exploit
447
local desiredAnimation = "Mining" -- Adjust this value as needed
448
449
game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(game.Players.LocalPlayer.Character:WaitForChild("Humanoid"):LoadAnimation(game:GetService("ReplicatedStorage"):WaitForChild("Animations"):WaitForChild(desiredAnimation)))
450
451
-- Secret Room Exploit
452
game.Players.LocalPlayer.Character:SetPrimaryPartCFrame(CFrame.new(Vector3.new(0, 100, 0)))
453
454
-- Unlock All Exploit
455
game:GetService("ReplicatedStorage"):WaitForChild("UnlockAll"):FireServer()
456
457
-- Capture Flag Exploit
458
local flagName = "RedFlag" -- Adjust this value as needed
459
460
game:GetService("ReplicatedStorage"):WaitForChild("FlagCapture"):FireServer(flagName)
461
462
-- Confetti Exploit
463
game:GetService("ReplicatedStorage"):WaitForChild("Confetti"):FireServer()
464
465
-- Infinite Stamina Exploit
466
game.Players.LocalPlayer.Character.Humanoid.MaxSprintSpeed = math.huge
467
468
-- Super Punch Exploit
469
local targetPlayer = "ExampleUser" -- Adjust this value as needed
470
471
game:GetService("ReplicatedStorage").SuperPunch:FireServer(targetPlayer)
472
473
-- Unlock All Skins Exploit
474
game:GetService("ReplicatedStorage"):WaitForChild("UnlockSkins"):FireServer()
475
476
-- Auto Clicker Exploit
477
game:GetService("UserInputService").InputBegan:connect(function(input)
478
if input.KeyCode == Enum.KeyCode.MouseButton1 then
479
while true do
480
wait(0.1)
481
game:GetService("ReplicatedStorage").Clicker:FireServer()
482
end
483
end
484
end)
485
486
-- Spin Bot Exploit
487
local desiredSpeed = 360 -- Adjust this value as needed
488
489
game:GetService("RunService").Stepped:connect(function()
490
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(math.rad(desiredSpeed), 0, 0)
491
end)
492
493
-- Rocket Jump Exploit
494
local desiredPower = 1000 -- Adjust this value as needed
495
496
game:GetService("UserInputService").InputBegan:connect(function(input)
497
if input.KeyCode == Enum.KeyCode.R then
498
local rocket = Instance.new("Part")
499
rocket.Size = Vector3.new(2, 2, 4)
500
rocket.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 10, 0)
501
rocket.BrickColor = BrickColor.new("Bright red")
502
rocket.CanCollide = false
503
rocket.Anchored = true
504
rocket.Parent = game.Workspace
505
506
local bodyVelocity = Instance.new("BodyVelocity")
507
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
508
bodyVelocity.Velocity = Vector3.new(0, desiredPower, 0)
509
bodyVelocity.Parent = rocket
510
end
511
end)
512
513
-- Kustom Aimbot Exploit
514
local targetPlayer = "ExampleUser" -- Adjust this value as needed
515
516
game:GetService("ReplicatedStorage").Aimbot:FireServer(targetPlayer)
517
518
-- Fake Kixk Exploit
519
local targetPlayer = "ExampleUser" -- Adjust this value as needed
520
521
game:GetService("ReplicatedStorage").FakeKick:FireServer(targetPlayer)
522
523
-- Ghost Mode Exploit
524
local ghostMode = false
525
526
game:GetService("RunService").Ste