Dev Console Scripts

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 5

Scripts from Youtubers

Ez Banish - require(4528090157).why("Hariss2022")

Golden Tec-9 - require(1525600089).goldentec("Hariss2022")

Chara - require(4587719344).load('Hariss2022')

Holiday Feel - require(4502358827).load("Hariss2022")

Gek Glitcher - require(3256825936).load("Hariss2022")

Blind Reaper - require(4185644819).a("Hariss2022")

Banish Switcher V2 - require(3092706102).load("Hariss2022")

What Another One V3 - require(4125860484)("Hariss2022")

Ferrari - https://pastebin.com/1iCSMS90

Staff Of Disastrous Explosions - https://pastebin.com/raw/wATyMSUx

Video Powers - https://pastebin.com/raw/Sm6tREqR

Grab Knife V3 - https://pastebin.com/raw/S8cjdEcs

The Flash - https://pastebin.com/raw/ejENVv0p

Earth Powers - https://pastebin.com/raw/nUHCYMtV

Tracer Guns - https://pastebin.com/raw/47zftm9y

Move Sun Tool - https://pastebin.com/raw/Gr4QnsL5

Dual M1911 - http://pastebin.com/raw/cR4yktdr

Pee - https://pastebin.com/R57FiKfW

Scripts That Change Character

- Pandora - require(3024624301).load("BigCamgamer132")

- Noob Bat - require(3037388211).load("BigCamgamer132") --Press X to equip tool

- Ultimate Trolling GUI 1 - require(3059033683):Fire("BigCamgamer132")

- Ultimate Trolling GUI 2 - require(2993514878):Fire("BigCamgamer132")

- Ultimate Trolling GUI 3 - require(4528687560):LMAFO("Hariss2022")

- Nuke Incoming - require(1699614667).Player("BigCamgamer132")

- Spectrum Glitcher - require(2605278525).spec("BigCamgamer132")

- Gunjourer - require(3117546674):Fire('BigCamgamer132') - Gunjourer

- Magic Power - require(3117564747):Fire('Hariss2022') - Magic Power


- Dual Ultima - require(3117661544):Fire('BigCamgamer132') - Dual Ultima

- Cream - require(03029623677):Fire("BigCamgamer132") - Cream

- Nebula Glitcher - require(2605278525).spec("BigCamgamer132")

Other Game Scripts


game.Players.playernamehere.leaderstats.Money.Value = 100000

where it says money change it to the value example : gems


then do
game.Players.playernamehere.leaderstats.gems.Value = 100000
then change playernamehere to your name
you can do this to friends to

Kill: game.Worksace.playernamehere.Humanoid.Health = 0

Kick: game.Players.playernamehere:Remove()

Infinite Health: game.Workspace.playernamehere.Humanoid.MaxHealth = math.huge

Kick all: p= game.Players:GetChildren()


for i= 1, #p do
p[i]:remove()
end

Kill all: p= game.Players:GetChildren()


for i = 1,#p do
p[i].Character.Humanoid.
MaxHealth = 0
end

no tools all: p= game.Players:GetChildren()


for i = 1,#p do
o = p[i].Backpack:GetChildren()
for i = 1, #o do
o[i]:remove()
end
end

Time: game.Lighting.TimeOfDay = "00:00:00"

Face remove: game.Workspace.playernamehere.Head.Face:remove()

Invisible Torso: game.Workspace.shiveringly.Humanoid.Torso.Transparency = 1

Walkspeed: game.Workspace.playernamehere.Humanoid.Walkspeed = 50

Invisible all: c= game.Players:GetChildren()


for i= 1, #c do
p= c[i].Character:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Transparency = 1
end
end
end

Ghost all: c= game.Players:GetChildren()


for i= 1, #c do
p= c[i].Character:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Transparency = 0.5
end
end
end

Visible all: c= game.Players:GetChildren()


for i= 1, #c do
p= c[i].Character:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Transparency = 0
end
end
end

Freeze all: p= game.Players:GetChildren()


for i= 1, #p do
if p[i]~= "playernamehere" then
p[i].Character.Torso.Anchored = true
end
end

Thaw all: p= game.Players:GetChildren()


for i= 1, #p do
if p[i]~= "playernamehere" then
p[i].Character.Torso.Anchored = false
end
end

Freeze: game.Workspace.playernamehere.Torso.Anchored = true

Thaw: game.Workspace.playernamehere.Torso.Anchored = false

No life all: p= game.Players:GetChildren()


for i= 1, #p do
if p[i]~= "playernamehere" then
p[i].Character.Humanoid:Remove()
end
end
end

No life: game.Workspace.playernamehere.Humanoid:remove()

Delete base: p= game.Workspace:GetChildren()


for i= 1, #p do
if p[i].className == "Part" then
if p[i].Name ~= "playernamehere" then
p[i]:remove()
end
end
end

Server shutdown: game.Workspace.Parent:remove()


end

Explosion: Instance.new("Explosion").Parent = game.Workspace.playernamehere.Torso

Fire: Instance.new("Fire").Parent = game.Workspace.playernamehere.Torso

Sparkles: Instance.new("Sparkles").Parent = game.Workspace.playernamehere.Torso

Smoke: Instance.new("Smoke").Parent = game.Workspace.playernamehere.Torso

Message: local m = Instance.new("Message")


m.Parent=game.Workspace
m.Text = "Yay it worked!"
wait(3)
m:Remove()

Giant Charater: L = game.Players.playernamehere.Character


L.Torso.Size = Vector3.new(100,100,100)
L.Head.Size = Vector3.new(50,50,50)
L.Head.Mesh:remove()

Teleport All To 1000 Studs High: p = game.Players:GetChildren()


for i = 1,#p do
p[i].Character.Torso.CFrame = CFrame.new(math.random(1,30),10000,math.random(1,30))

end

Invisible Head: game.Workspace.playernamehere.Transparency = 1

Invisible Head All: c = game.Players:GetChildren()


for i = 1, #c do
c[i].Character.Head.Transparency = 1

Genocide: while true do


p= game.Players:GetChildren()
for i= 1, #p do
p[i].Character.Torso.Neck:remove()
wait (0.1)
end
end

Mind Control: game.Players.playernamehere.Character = game.Players. .Character

They're the most common scripts you'll find decent scripter use.

The scripts below are the type of scripts that you use when you want anything from
the catalog. However, there are certain things that you will not be able to get
with those scripts (e.g: faces):

Orb: x = game:GetService("InsertService"):LoadAsset(41098024) x.Parent =


game.Workspace x:makeJoints()
x:moveTo(game.Players.playernamehere.Character.Head.Position)

Insert: x = game:GetService("InsertService"):LoadAsset(21001552) x.Parent =


game.Workspace x:makeJoints()
x:moveTo(game.Players.playernamehere.Character.Head.Position)

Jetpack: x = game:GetService("InsertService"):LoadAsset() x.Parent = game.Workspace


x:makeJoints() x:moveTo(game.Players.playernamehere.Character.Head.Position)

Admin Brick: x = game:GetService("InsertService"):LoadAsset(57845331) x.Parent =


game.Workspace x:makeJoints()
x:moveTo(game.Players.playernamehere.Character.Head.Position)

Pokeball: x = game:GetService("InsertService"):LoadAsset(28224824) x.Parent =


game.Workspace x:makeJoints()
x:moveTo(game.Players.playernamehere.Character.Head.Position)

Eyeball: x = game:GetService("InsertService"):LoadAsset(30103114) x.Parent =


game.Workspace x:makeJoints()
x:moveTo(game.Players.playernamehere.Character.Head.Position)

Above are just examples. You can get different things by changing the ID of the
object. You put the ID in between the '(' and ')'.

NOTE: WHERE IT SAYS 'playernamehere' CHANGE IT TO YOUR NAME OR ELSE IT WON'T WORK.

That's all for now.


Have fun scripting!

THIS IS THE BEST AND MAIN 1

game.Players.playernamehere.leaderstats.Money.Value = 100000

where it says money change it to the value example : gems


then do
game.Players.playernamehere.leaderstats.gems.Value = 100000
then change playernamehere to your name
you can do this to friends too

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy