Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- player = workspace.FrameTamerFan
- hum = player:WaitForChild("Humanoid")
- myname = "FrameTamerFan"
- --tool
- tool = Instance.new("Tool")
- tool.Parent = player
- tool.Name = "Forcefield"
- handle1 = Instance.new("Part")
- handle1.Parent = tool
- handle1.Name = "Handle"
- handle1.Size = Vector3.new(5,0.1,5)
- handle1.Touched:Connect(function(p)
- sound = Instance.new("Sound",workspace)
- sound.SoundId = "rbxassetid://3165517523"
- sound.Volume = 100
- sound:Play()
- p.Locked = false
- game:GetService("Debris"):AddItem(p,0)
- end)
- local decal = Instance.new("Decal")
- decal.Face = Enum.NormalId.Top
- decal.Parent = handle1
- -- define faces
- local happyFace = "http://www.roblox.com/asset/?id=11503672257"
- decal.Texture = happyFace
- tool.Activated:Connect(function()
- local forceField = Instance.new("ForceField")
- forceField.Visible = true
- forceField.Parent = player
- end)
- --tool2
- tool2 = Instance.new("Tool")
- tool2.Parent = player
- tool2.Name = "NoAccessories"
- handle2 = Instance.new("Part")
- handle2.Parent = tool2
- handle2.Name = "Handle"
- handle2.Transparency = 1
- tool2.Activated:Connect(function()
- for _, v in ipairs(workspace:GetChildren()) do
- if v:IsA("Model") then
- for _, d in ipairs(v:GetChildren()) do
- if d:IsA("Accessory") then
- d:Destroy()
- end
- end
- end
- end
- end)
- --tool3
- tool3 = Instance.new("Tool")
- tool3.Parent = player
- tool3.Name = "NoHumanoid"
- handle3 = Instance.new("Part")
- handle3.Parent = tool3
- handle3.Name = "Handle"
- handle3.Transparency = 1
- tool3.Activated:Connect(function()
- for _, v in ipairs(workspace:GetChildren()) do
- if v:IsA("Model") then
- for _, d in ipairs(v:GetChildren()) do
- if d:IsA("Humanoid") then
- if not d.Name == "FrameTamerFan" then
- d:Destroy()
- end
- end
- end
- end
- end
- end)
- hum.Health = 99999999999999
- hum.DisplayName = ""
- workspace.FrameTamerFan.Head.Touched:Connect(function(p)
- p.Locked = false
- game:GetService("Debris"):AddItem(p,0)
- end)
- for i,v in pairs(player:GetChildren()) do
- pcall(function()
- if v.Name ~= "HumanoidRootPart" then
- local select = Instance.new("SelectionBox", v)
- select.Adornee = v
- select.Color3 = Color3.new(0.760784, 0.0431373, 0.0431373)
- end
- end)
- end
- for _, v in ipairs(player:GetChildren()) do
- if v:IsA("Part") then
- v.Transparency = 1
- for _, d in ipairs(v:GetChildren()) do
- if d:IsA("Mesh") then
- d:Destroy()
- end
- end
- end
- end
- game:GetService("RunService").Stepped:Connect(function()
- for i,v in pairs(game:GetService("Players"):GetPlayers()) do
- for j,k in pairs(table) do
- if k == v.Name then
- v:Kick()
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement