Okay why plss why do I get this errror it stupid

why plsss why this doesnt make any senseee, ya bluehalf66660000 is child of workspace
Photos 8_18_2022 11_32_27 PM_LI

Could you please provide the script? You may have made a formatting error.

1 Like

ohr i forgot to say .Value after saying Stopppppp

1 Like

I still don’t understand what the script even does or how it’s formatted. Could you just copy and paste the script to the forums?

OKAY

local char = script.Parent
local humanoid = char:FindFirstChildOfClass("Humanoid")
local hat1 = script.Parent.BerserkerHelmet.Handle
local hat2 = script.Parent.BerserkerHelmet.HelmetEye
local shirt = script.Parent.Shirt
local pants = script.Parent.Pants
script.Stopp.Value = false
Phase.Value = false
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=7525564462"
pants.PantsTemplate = "http://www.roblox.com/asset/?id=7525412474"


task.wait(1)
if humanoid and not Phase.Value then
	humanoid.HealthChanged:Connect(function(h)
		if h < 2 then
			print("sup")
			local Beserk = humanoid:LoadAnimation(script.BESEK)
			local helmet = humanoid:LoadAnimation(script.helmet)
			Phase.Value = true
			Beserk:Play()
			script.Stopp.Value = true
			humanoid.WalkSpeed = 0
			humanoid.JumpPower = 0
			humanoid.MaxHealth = math.huge
			humanoid.Health = math.huge
			Beserk.Stopped:Wait()
			task.wait(0.5)
			helmet:Play()
			script.Stopp.Value = false
			humanoid.MaxHealth = 1000
			humanoid.Health = 1000
			humanoid.WalkSpeed = 25
			humanoid.JumpPower = 50
			helmet.Stopped:Wait()
			shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=7691872685"
			pants.PantsTemplate = "http://www.roblox.com/asset/?id=7691875360"
			hat1.Transparency = 0
			hat2.Transparency = 0
		end
	end)
end

By the look of that error, youre checking for the value before it exists.
To avoid any future errors, i would recommend doing script:WaitForChild("Stopp")

2 Likes

OKAY ############################################################## im

1 Like

Possibly, but why would OP want to make it exist later? If OP created it later into the script then they should have specified that.