script.Parent.Transparency = 1
parent = script.Parent
parent.Touched:connect(function(hit)
local humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid then
local character = hit.Parent
local HumanoidRootPart = character.HumanoidRootPart
if not HumanoidRootPart:FindFirstChild("NoGrav") then
local bv = Instance.new("BodyForce")
bv.Name = "NoGrav"
bv.Force = Vector3.new(0,-9,0) * -workspace.Gravity/150
bv.Parent = HumanoidRootPart
character.Animate.fall.FallAnim.AnimationId = "rbxassetid://9994619922"
end
end
end)