Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Created with ttyyuu12345's compiler
- --ttyyuu12345 is not responsible for damages caused to your game
- --This plugin does not remove things
- --ttyyuu12345 cannot be held resonsible for manual deletion for the purpose of testing
- --Keep in mind, any items that cause errors in compilation will be skipped and documented within the last line of the disclaimer comments
- --Thank you for using my plugin and enjoy :)
- --It is free to use
- --If you use this plugin to create your own, please give me credit
- --Z_V edited my plugin to look like his own and published it without giving me credit, and that makes me very angry
- --Errors: TouchTransmitter
- local Create = function(itemClass,tabl)
- local item = Instance.new(itemClass)
- for i,v in pairs(tabl) do
- local a,b = ypcall(function() return item[i] end)
- if a then
- item[i] = tabl[i]
- end
- end
- return item
- end
- local runDummyScript = function(f,scri)
- local oldenv = getfenv(f)
- local newenv = setmetatable({}, {
- __index = function(_, k)
- if k:lower() == 'script' then
- return scri
- else
- return oldenv[k]
- end
- end
- })
- setfenv(f, newenv)
- ypcall(function() f() end)
- end
- cors = {}
- mas = Instance.new("Model",game:GetService("Lighting"))
- mas.Name = "CompiledModel"
- o1 = Create("Tool",{
- ["Name"] = "Beer",
- ["Parent"] = mas,
- ["GripForward"] = Vector3.new(-0, -0, 1),
- ["GripRight"] = Vector3.new(0, -1, 0),
- ["GripUp"] = Vector3.new(1, 0, 0),
- })
- o2 = Create("Part",{
- ["Name"] = "Handle",
- ["Parent"] = o1,
- ["Material"] = Enum.Material.Metal,
- ["BrickColor"] = BrickColor.new("Mid gray"),
- ["Position"] = Vector3.new(-6, 1.00000596, -11),
- ["Rotation"] = Vector3.new(-0, 0, 90),
- ["CFrame"] = CFrame.new(-6, 1.00000596, -11, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1),
- ["Shape"] = Enum.PartType.Cylinder,
- ["Size"] = Vector3.new(1.20000005, 0.800000012, 0.800000012),
- ["BottomSurface"] = Enum.SurfaceType.Smooth,
- ["TopSurface"] = Enum.SurfaceType.Smooth,
- ["Color"] = Color3.new(0.803922, 0.803922, 0.803922),
- })
- o4 = Create("LocalScript",{
- ["Parent"] = o1,
- })
- table.insert(cors,coroutine.create(function()
- wait()
- runDummyScript(function()
- function PlayAnimation()
- local animation = Instance.new("Animation")
- animation.AnimationId = "http://www.roblox.com/Asset?ID=572425745"
- local char = game:GetService("Players").LocalPlayer.Character
- if (char~=nil) and (char.Parent~=nil) then
- local hum = char:findFirstChild("Humanoid")
- if hum~=nil then
- local animTrack = hum:LoadAnimation(animation)
- animTrack:Play()
- end
- end
- end
- function CreateGui()
- local sgui = Instance.new("ScreenGui",game:GetService("Players").LocalPlayer.PlayerGui)
- local frame = Instance.new("Frame",sgui)
- frame.Size = UDim2.new(1,0,1.1,0)
- frame.Position = UDim2.new(0,0,-0.1,0)
- frame.BackgroundColor3 = Color3.new(192/255,192/255,192/255)
- frame.BackgroundTransparency = 1
- return sgui,frame
- end
- local canActive = true
- local gui,fram = CreateGui()
- coroutine.resume(coroutine.create(function()
- while wait(1) do
- if fram.BackgroundTransparency~=1 then
- fram.BackgroundTransparency = fram.BackgroundTransparency + 0.01
- end
- end
- end))
- script.Parent.Activated:connect(function()
- if canActive then
- canActive = false
- PlayAnimation()
- wait(1.5)
- fram.BackgroundTransparency = fram.BackgroundTransparency - 0.075
- canActive = true
- end
- end)
- end,o4)
- end))
- mas.Parent = workspace
- mas:MakeJoints()
- local mas1 = mas:GetChildren()
- for i=1,#mas1 do
- mas1[i].Parent = game:GetService("Players").LocalPlayer.Backpack
- ypcall(function() mas1[i]:MakeJoints() end)
- end
- mas:Destroy()
- for i=1,#cors do
- coroutine.resume(cors[i])
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement