Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ file_destruction.lua is gonna load...]]--
- warn("file_destruction.lua has loaded!")
- function DestroyPart(part)
- if part:IsA("Part") then
- part.BrickColor = BrickColor.new("Really black")
- end
- end
- DestroyPart()
- function DestroyScript(script)
- if script:IsA("Script") then
- script:Destroy()
- end
- end
- DestroyScript()
- --[[ If the first version doesn’t work, you can try this script below this message ]]--
- warn("file_destruction.lua has loaded!")
- function DestroyPart(part)
- if part:IsA("Part") then
- part.BrickColor = BrickColor.new("Really black")
- end
- end
- function DestroyScript(script)
- if script:IsA("Script") then
- script:Destroy()
- end
- end
- DestroyPart()
- DestroyScript()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement