#i want help with this script

287 messages · Page 1 of 1 (latest)

vale topaz
#

hi

little shadow
vale topaz
#

why

#

why

little shadow
vale topaz
#

yes

#

i just created

little shadow
vale topaz
#

for help with script

little shadow
vale topaz
#

bro stop

#

your annoying

little shadow
#

SEND THE FUCKING SCRIPT

vale topaz
#

ok

#

areyou going to steal

little shadow
#

Yes

vale topaz
#

bro

#

stop

little shadow
#

Im gonna steal your shitty script

vale topaz
#

i didnt make it

#

i paid sombody

#

to make it

#

for me

little shadow
#

You got scammed lmao

vale topaz
#

why

little shadow
#

You paid for a script that is not even working

#

Brilliant

vale topaz
#

i didnt say it wasnt working

#

i said i needed help with somthing

#

in the script

little shadow
#

Then you have created this post for nothing

vale topaz
#

why?

little shadow
#

THEN SEND THE FUCKING SCIRPT YOU IDIOT

vale topaz
#

this is scripting help to help people with code

vale topaz
#

if you dont stop being toxic

little shadow
#

How the fuck do you want to get help if you dont even send the fucking script? Are you that big of an idiot or what?

little shadow
vale topaz
#

yes cuz you keep typing

#

so i have to re type

#

ok ill send code in a sec

#

1 sec

little shadow
vale topaz
#

game.ReplicatedStorage.WU1.OnServerEvent:Connect(function(player)
while true do
wait()
if player.leaderstats.Power.Value >= 300 then
player.Backpack:ClearAllChildren()
if player.Character:FindFirstChildWhichIsA("Tool") then
player.Character:FindFirstChildWhichIsA("Tool"):Destroy()
end

        local sword = game.ServerStorage.Weights.Bottle:Clone()
        sword.Parent = player.Backpack
        player.Text.Value = "Next weight at strength: 1000"
        break
    end
end

end)

game.ReplicatedStorage.WU2.OnServerEvent:Connect(function(player)
while true do
wait()
if player.leaderstats.Power.Value >= 600 then
player.Backpack:ClearAllChildren()
if player.Character:FindFirstChildWhichIsA("Tool") then
player.Character:FindFirstChildWhichIsA("Tool"):Destroy()
end

        local sword = game.ServerStorage.Weights.Bottle:Clone()
        sword.Parent = player.Backpack
        player.Text.Value = "You hit max weight."
        break
    end
end

end)

#

so when you lift the weight

little shadow
vale topaz
#

it gives power

#

then

little shadow
vale topaz
#

bro

#

who is mods

little shadow
little shadow
vale topaz
#

i just

#

not showing it all

#

cuz your gonna steal it

#

and it doesnt even say oyur a coder

#

so i dont trust you

little shadow
#

Idiot, I dont give a shit about your little script lmao

#

I can make that with my eyes closed

vale topaz
#

ok 👍

little shadow
#
game.ReplicatedStorage.WU1.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 300 then
            player.Backpack:ClearAllChildren()
            if player.Character:FindFirstChildWhichIsA("Tool") then
                player.Character:FindFirstChildWhichIsA("Tool"):Destroy()
            end

            local sword = game.ServerStorage.Weights.Bottle:Clone()
            sword.Parent = player.Backpack
            player.Text.Value = "Next weight at strength: 1000"
            break
        end
    end
end)



game.ReplicatedStorage.WU2.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 600 then
            player.Backpack:ClearAllChildren()
            if player.Character:FindFirstChildWhichIsA("Tool") then
                player.Character:FindFirstChildWhichIsA("Tool"):Destroy()
            end

            local sword = game.ServerStorage.Weights.Bottle:Clone()
            sword.Parent = player.Backpack
            player.Text.Value = "You hit max weight."
            break
        end
    end
end)
#

Use the format dummy

vale topaz
#

bro i dunno how to do that

little shadow
#

Ok so whats the issue?

tardy nova
#

@little shadow dude your so funny

vale topaz
#

there is a punch tool

#

and i want it to

#

stay

little shadow
#

Oh God this system is trash lmao
Using 2 different remote events and while loops... Hope you didnt paid more than 5 robux...

vale topaz
#

and not get

tardy nova
#

every time i see you in threads its all caps

little shadow
vale topaz
#

removed

manic stump
#

@vale topaz how much did u pay for this?!

vale topaz
#

I NEED HELP

#

stop

manic stump
#

please tell me

vale topaz
#

dunno

#

it was in euro

little shadow
manic stump
#

im litteraly european

vale topaz
#

ok

little shadow
vale topaz
manic stump
#

we'll help if u tell us how much u paid :))

vale topaz
#

no bro your not even a coder

#

so how you gonan help

little shadow
manic stump
#

i am trust me

#

avg can tell u

vale topaz
manic stump
#

im like so good they cant even rank me

little shadow
vale topaz
#

actually

#

ill send you the better one

#

local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player)
for _, tool in ipairs(player.Backpack:GetChildren()) do
if tool:IsA("Tool") and tool.Name ~= excludedToolName then
tool:Destroy()
end
end
end)

game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
for _, tool in ipairs(character:GetChildren()) do
if tool:IsA("Tool") and tool.Name ~= excludedToolName then
tool:Destroy()
end
end
end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
while true do
wait()
if player.leaderstats.Power.Value >= 300 then
local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
toolToDestroy:Destroy()
end

        local sword = game.ServerStorage.Punches.Punch:Clone()
        sword.Parent = player.Backpack
        break
    end
end

end)

manic stump
#

akshually 🤓

little shadow
manic stump
#

is that a free script or something?

vale topaz
#

no

#

bro

little shadow
#
local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player)
    for , tool in ipairs(player.Backpack:GetChildren()) do
        if tool:IsA("Tool") and tool.Name ~= excludedToolName then
            tool:Destroy()
        end
    end
end)

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        for , tool in ipairs(character:GetChildren()) do
            if tool:IsA("Tool") and tool.Name ~= excludedToolName then
                tool:Destroy()
            end
        end
    end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 300 then
            local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
            if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
                toolToDestroy:Destroy()
            end

            local sword = game.ServerStorage.Punches.Punch:Clone()
            sword.Parent = player.Backpack
            break
        end
    end
end)
manic stump
#

shit looks like something i'd find from toolbox if i searched "free kit simulator"

little shadow
#

My eyes are burining

vale topaz
#

@vale topaz bro can you tell crypt to piss off

#

and ban him from ym forum pls

manic stump
#

lmao

little shadow
#

Piss of Crypt, you are stealing his shitty code and you are asking how much he paid for that thing

vale topaz
#

init

trail mango
#

:/

vale topaz
#

BRO

#

WHO ARE YOU

little shadow
vale topaz
#

pls

#

these guys arent coders

trail mango
manic stump
little shadow
#

He might... We are migh.. If you even tell us what you need lmao

manic stump
#

lmao

trail mango
#

I am on mobile right now, can't read.

manic stump
#

i need help

trail mango
#

Nor code.

vale topaz
#

bro amir

vale topaz
#

i see you in the channel bro

manic stump
#

send code buddy

vale topaz
#

BRO I DID

manic stump
#

WHAT DO U NEEDF

trail mango
#

Lmao.

little shadow
#

This chat is going insane lmao

#

Love it

trail mango
#

Send code like so:

vale topaz
#

when you die its supposed to only leave you with the punch tool and the bottle

#

but

#

and all the other stuff you unlocked

vale topaz
#

you spawn with

#

but i dont want that

tardy nova
#

this forum is basically general

manic stump
#

Reposting

trail mango
#

Chicken, do you know how to script?

manic stump
#
local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player)
    for , tool in ipairs(player.Backpack:GetChildren()) do
        if tool:IsA("Tool") and tool.Name ~= excludedToolName then
            tool:Destroy()
        end
    end
end)

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        for , tool in ipairs(character:GetChildren()) do
            if tool:IsA("Tool") and tool.Name ~= excludedToolName then
                tool:Destroy()
            end
        end
    end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 300 then
            local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
            if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
                toolToDestroy:Destroy()
            end

            local sword = game.ServerStorage.Punches.Punch:Clone()
            sword.Parent = player.Backpack
            break
        end
    end
end)
vale topaz
#

did you fix it

little shadow
manic stump
#

lmao

#

smart people think alike

vale topaz
#

bro i know only a bit of scripting

#

like a bit

#

i can make a part change color

tardy nova
vale topaz
sour skiff
vale topaz
#

these kids

#

bro there annoying me bro

sour skiff
#

no

#

i wont ban anyone cuz u feel annoyed -_-

little shadow
vale topaz
trail mango
#

Error right here.

manic stump
vale topaz
#

your mom

trail mango
#

There should be a variable here or the comma should be removed.

vale topaz
manic stump
#

u paid for a script that dosent even work, thats crazy

sour skiff
#

please not the im 17 im 23 im 48 arguments

vale topaz
#

for errors

tardy nova
#
local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player)
    for , tool in ipairs(player.Backpack:GetChildren()) do
        if tool:IsA("Tool") and tool.Name ~= excludedToolName then
            tool:Destroy()
        end
    end
end)

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        for , tool in ipairs(character:GetChildren()) do
            if tool:IsA("Tool") and tool.Name ~= excludedToolName then
                tool:Destroy()
            end
        end
    end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 300 then
            local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
            if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
                toolToDestroy:Destroy()
            end

            local sword = game.ServerStorage.Punches.Punch:Clone()
            sword.Parent = player.Backpack
            break
        end
    end
end)
local hotdog = "iq 21"
while true do
print(hotdog)
end
trail mango
#

What? Lmao.

vale topaz
#

BRO

sour skiff
#

if yall dont wanna help then leave the thread

manic stump
#

k fine ill fix it so u stop crying

vale topaz
#

im deleteing this and redoing it

#

bro these guys

#

are so annoying

trail mango
#

Syntax errors means the entire code will not work even if it isn't apart of it.

vale topaz
#

not even helping

little shadow
vale topaz
#

it works

#

i legit just used it

trail mango
#

Maybe AVG messed it up. :/

manic stump
#
local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player) then
    for , tool in ipairs(player.Backpack:GetChildren()) do
        if tool:IsA("Tool") and tool.Name ~= excludedToolName then do
            tool:Destroy()
        end)
    end
end)

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        for 1,2, tool in ipairs(character:GetChildren()) do
            if tool:IsA("Tool") and tool.Name ~= excludedToolName then
                tool:Destroy()
            end
        end
    end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
    while true do
        wait(task.wait())
        if do player.leaderstats.Power.Value >= 300 then
            local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
            if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
                toolToDestroy:Destroy()
            end

            local sword = game.ServerStorage.Punches.Punch:Clone()
            sword.Parent = player.Backpack
            break
        end
    end
end)

vale topaz
#

init

little shadow
#

Love this muahhaa

manic stump
#

fixed theb script

vale topaz
#

bro if you give me a virus

sour skiff
vale topaz
#

bro ill legit sue you

little shadow
trail mango
#

Nothing. 😨

vale topaz
#

BRO

trail mango
#

Umm..

sour skiff
#

only if they keep trolling

vale topaz
#

THAT DOESNT EVEN WORK

#

bro they legit

#

made it worse

manic stump
trail mango
#

Maybe repost? Idk.

vale topaz
trail mango
#

Start out clean, with code format

manic stump
#
local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player)
    for i, tool in ipairs(player.Backpack:GetChildren()) do
        if tool:IsA("Tool") and tool.Name ~= excludedToolName then
            tool:Destroy()
        end
    end
end)

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        for i, tool in ipairs(character:GetChildren()) do
            if tool:IsA("Tool") and tool.Name ~= excludedToolName then
                tool:Destroy()
            end
        end
    end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 300 then
            local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
            if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
                toolToDestroy:Destroy()
            end

            local sword = game.ServerStorage.Punches.Punch:Clone()
            sword.Parent = player.Backpack
            break
        end
    end
end)

tardy nova
# manic stump ```lua local excludedToolName = "Bottle" -- Replace with the name of the tool yo...
local excludedToolName = "Bottle" -- Replace with the name of the tool you want to exclude

game.Players.PlayerRemoving:Connect(function(player)
    for , tool in ipairs(player.Backpack:GetChildren()) do
        if tool:IsA("Tool") and tool.Name ~= excludedToolName then
            tool:Destroy()
        end
    end
end)

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(character)
        for , tool in ipairs(character:GetChildren()) do
            if tool:IsA("Tool") and tool.Name ~= excludedToolName then
                tool:Destroy()
            end
        end
    end)
end)

game.ReplicatedStorage.PU1.OnServerEvent:Connect(function(player)
    while true do
        wait()
        if player.leaderstats.Power.Value >= 300 then
            local toolToDestroy = player.Character:FindFirstChildWhichIsA("Tool")
            if toolToDestroy and toolToDestroy.Name ~= excludedToolName then
                toolToDestroy:Destroy()
            end

            local sword = game.ServerStorage.Punches.Punch:Clone()
            sword.Parent = player.Backpack
            break
        end
    end
end)
local hotdog = "iq 21"
while true do
print(hotdog)
end
vale topaz
#

ok ima test it

manic stump
#

also wont it crash ur game cause of while true do?

vale topaz
#

bro see

tardy nova
#

maybe

sour skiff
vale topaz
#

and if i reset watch

sour skiff
#

so no it wont

vale topaz
little shadow
vale topaz
tardy nova
#

quiet!

naive sandBOT
#

dynoSuccess Note added for osoloman.

vale topaz
#

@wheat epoch bro pls help me with my script

little shadow
#

I still dont know what he needs help with... Apart from the entire script

vale topaz
#

bro

#

so when

#

you lift you unlock diffrent tools

#

so when you hit 300 power

little shadow
#

OMG HE IS DOING IT! FINALLY SAYING THE ISSUE!

vale topaz
#

you will unlock bottle

#

and you start with stick

#

bro shush

tardy nova
sour skiff
vale topaz
#

but when you get to the bottle

#

i want it

#

to

sour skiff
manic stump
#

why dont u just check every time their power value changed, if its 300 or above, it deletes everything and gives the new tool unless u allready have it

manic stump
#

learn scripting

vale topaz
#

and herman wont help me

#

bro

little shadow
vale topaz
#

cant you just tell me

manic stump
#

u paid for a non working script, ask the person u bought it from

vale topaz
#

no

#

because it is working

#

i just wanted to change it

little shadow
manic stump
#

ask the person u bought it from

wheat epoch
sour skiff
manic stump
#

also, that script is worse than some of mine

vale topaz
#

bro

#

it wont let me delete

#

@sour skiff

sour skiff
manic stump
#

u got completely scammed

sour skiff
vale topaz
#

it wont delete the ofrum

sour skiff
#

u cant delete the thread

vale topaz
#

why

sour skiff
#

just leave it

#

why yes

vale topaz
#

BRO I AM

#

AND ITS NOT

manic stump
#

just add "solved" tag

#

dingus

sour skiff
#

cuz u keep talking here

little shadow
#

Welp... This was fun and pure chaos :)

twin arch
#

What tf happened here

little shadow
#

Hi! Welcome to our circle, please, take a seat!

wheat epoch
#

Welcome to the #1020374354867007528 musketeers