--if you see this, please follow me : https://rscripts.net/@kokkiavox local Fun=loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/nightmares.fun-UI-Library/main/source.lua"))() local window=Fun.Create("open source script") local leakTab=window:Tab("Troll") local playerTab=window:Tab("Player") local movementSection=playerTab:Section("Movement") local player=game.Players.LocalPlayer local character=player.Character or player.CharacterAdded:Wait() local humanoid=character:WaitForChild("Humanoid") local rootPart=character:WaitForChild("HumanoidRootPart") player.CharacterAdded:Connect(function(char) character=char humanoid=char:WaitForChild("Humanoid") rootPart=char:WaitForChild("HumanoidRootPart") end) movementSection:Slider("WalkSpeed",16,200,function(v)if humanoid then humanoid.WalkSpeed=v end end) movementSection:Slider("JumpPower",50,200,function(v)if humanoid then humanoid.JumpPower=v end end) local disappearingEnabled=false leakTab:Section("Platforms"):Toggle("DisappearingPlatform",function(s)disappearingEnabled=s end) local platforms={} local function updatePlatformsCache() platforms={} for _,obj in pairs(workspace:GetDescendants())do if obj:IsA("BasePart")and obj.Name=="DisappearingPlatform"then table.insert(platforms,obj) end end end workspace.DescendantAdded:Connect(function(obj) if obj:IsA("BasePart")and obj.Name=="DisappearingPlatform"then table.insert(platforms,obj) end end) workspace.DescendantRemoving:Connect(function(obj) for i,p in pairs(platforms)do if p==obj then table.remove(platforms,i) break end end end) task.spawn(function() while true do if disappearingEnabled and rootPart and rootPart.Parent then for _,platform in pairs(platforms)do pcall(function() firetouchinterest(rootPart,platform,0) firetouchinterest(rootPart,platform,1) end) end end task.wait(0.1) end end) updatePlatformsCache()