#DataStore

238 messages · Page 1 of 1 (latest)

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

devout trailBOT
#

studio** You are now Level 6! **studio

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

did you turn on API service? @golden phoenix

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

then it should work

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

but in this script you havent added any values or currencies yet

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

like the values in the leaderstats

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Well, for currencies you have to add IntValue

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#
local datastore = game:GetService("DataStoreService")
local DS1 = datastore:GetDataStore("Cash")

game.Players.PlayerAdded:Connect(function(plr)
    local lead = Instance.new("Folder",plr)
    lead.Name = "leaderstats"
    
    local creds = Instance.new("IntValue",lead)
    creds.Name = "Credits"
    creds.Value = DS1:GetAsync(plr.UserId, creds.Value) or 0
    
    ----changes
    
    creds.Changed:Connect(function()
        DS1:SetAsync(plr.UserId, creds.Value)
    end)
    
end)


game.Players.PlayerRemoving:Connect(function(plr)
    DS1:SetAsync(plr.UserId, plr.leaderstats.Credits.Value)
end)
ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

you can just simply do this

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

also you can change "Credits" to whatever the currency name you wanted

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Oh my bad

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

so is the value there in workspace

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

or did a script create it

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

alright

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

I will try to make the script

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#
local datastore = game:GetService("DataStoreService")
local DS1 = datastore:GetDataStore("HeadScale")

game.Players.PlayerAdded:Connect(function(plr)    
    
    local creds = plr.Character.Humanoid.HeadScale
    creds.Value = DS1:GetAsync(plr.UserId, creds.Value) or 0
    
    ----changes
    
    creds.Changed:Connect(function()
        DS1:SetAsync(plr.UserId, creds.Value)
    end)
    
end)


game.Players.PlayerRemoving:Connect(function(plr)
    DS1:SetAsync(plr.UserId, plr.Character.Humanoid.HeadScale.Value)
end)
ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

there @golden phoenix

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yeah

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

fax

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

hol u0

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

hold up

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

mind sending me a screenshot of the script?

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Im on mobile rn so its hard to see the lines

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yeah the one that i sent you

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

so after line 18 make a new line

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

devout trailBOT
#

studio** You are now Level 5! **studio

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

ima send u the script

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

wait

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

So I think the Humanoid is nil because when player leaves the character got removed aswell

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

I will try

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

can I see the other script?

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

you can do the DataStore in that script but you will have to seperate line 23 - 29

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

it will still be two scripts but more simple

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

so remove line 23

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

till 29

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

HeadScale is a default thing in humanoid right

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

nah leave it like that for now

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

sooo here is the thing we can only save values like intvalues

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

I dont know about that

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yeah

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

for positions i think we can use stringvalue

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

HeadScale is position tho?

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

cuz i know nothing about headscale lol

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

ooh

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

can you copypaste headscale script here

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yea

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

the one with the headsize instance script

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yeah

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

i meant this script

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

alright

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#
local datastore = game:GetService("DataStoreService")
local DS1 = datastore:GetDataStore("HeadScale")
local DS2 = datastore:GetDataStore("HeadSize")
local DS3 = datastore:GetDataStore("Multiplier")

game.Players.PlayerAdded:Connect(function(player)
    wait(1)
    local charac = player.Character
    local leaderstats = Instance.new("Folder")
    leaderstats.Name = "leaderstats"
    leaderstats.Parent = player
    
    local HeadScale = Instance.new("IntValue",player)
    HeadScale.Name = "HeadScaleHolder"
    HeadScale.Value = DS1:GetAsync(player.UserId, HeadScale.Value) or 1

    local HeadSize = Instance.new("IntValue",leaderstats)
    HeadSize.Name = "HeadSize"
    HeadSize.Value = DS2:GetAsync(player.UserId, HeadSize.Value) or 1
    

    local Multiplier = Instance.new("IntValue", player)
    Multiplier.Name = "Multiplier"
    Multiplier.Value = DS3:GetAsync(player.UserId, Multiplier.Value) or 1
    
    
    --Changes
    
    HeadScale.Changed:Connect(function()
        DS1:SetAsync(player.UserId, HeadScale.Value)
    end)
    
    HeadSize.Changed:Connect(function()
        DS2:SetAsync(player.UserId, HeadSize.Value)
    end)
    
    Multiplier.Changed:Connect(function()
        DS3:SetAsync(player.UserId, Multiplier.Value)
    end)
    
    --Others
    
    local GUI = game.Workspace.Dummy.Head.BillboardGui:Clone()
    GUI.Parent = charac:WaitForChild("Head")

    local Text = Instance.new("TextLabel", GUI)

--    while true do
--        wait(1)
--        charac.Humanoid.HeadScale.Value += 0.01 * Multiplier.Value
--        charac.Humanoid.HeadScale:GetPropertyChangedSignal("Value"):Connect(function()
--            HeadSize.Value = charac.Humanoid.HeadScale.Value
--        end)
--  end
end)
ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Here is the script

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

made a datastore for the multiplier too

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

but the other script is not done yet

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Na

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#
game.Players.PlayerAdded:Connect(function(plr)
    
    local char = plr.Character
    local hum = char.Humanoid
    
    local HeadSc = plr:FindFirstChild("HeadScaleHolder")
    local ActualHeadSc = hum.HeadScale
    
    local HeadSz = plr.leaderstats.HeadSize
    local Multiplier = plr.Multiplier
    
    while true do
        ActualHeadSc.Value = HeadSc.Value
        HeadSz.Value = ActualHeadSc.Value
        HeadSc.Value = HeadSc.Value + 0.01 * Multiplier.Value
        wait(1)
    end
    
end)
ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

for this script make another script in serverscriptservice

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yea

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

both in ServerScriptService

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

soft dew
#

E

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Im not 100% sure

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

is the headscaleholder value adding up tho

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

devout trailBOT
#

studio** You are now Level 7! **studio

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

show me

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

dam

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Hoold up

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

is that an error in 2nd script

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

change it into

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

plr.CharacterAdded:Connect(function(character)

end)

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

put line 4 into that

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

and change char.Humanoid into character:WaitForChild("Humanoid)

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yeah

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

remove line 3

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

and put line 7 and more

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

into that function

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

yea

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

try now

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

any errors?

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

then the issue would be the while true do

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

Putting it outside the function fails it

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

hy man i gotta sleep

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

sonic drum
#

maybe tomorow

ember tangleBOT
#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.

#

I can't compile LaTeX in this thread as I lack the SEND_MESSAGES permission in the origin channel (#1020374354867007528)! Please check my permissions and try again.