Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local KnifeSimulator = Instance.new("ScreenGui")
- local frame = Instance.new("Frame")
- local open = Instance.new("TextButton")
- local main = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local credit = Instance.new("TextLabel")
- local havmoney = Instance.new("TextButton")
- local tpallplayer = Instance.new("TextButton")
- local close = Instance.new("TextButton")
- --Script And Gui Config
- KnifeSimulator.Name = "KnifeSimulator"
- KnifeSimulator.Parent = game.CoreGui
- frame.Name = "frame"
- frame.Parent = KnifeSimulator
- frame.BackgroundColor3 = Color3.new(1, 1, 1)
- frame.Position = UDim2.new(0.862630963, 0, 0.311526477, 0)
- frame.Size = UDim2.new(0, 98, 0, 47)
- frame.Style = Enum.FrameStyle.DropShadow
- open.Name = "open"
- open.Parent = frame
- open.BackgroundColor3 = Color3.new(1, 1, 1)
- open.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- open.Position = UDim2.new(-0.0102040814, 0, 0.0212766044, 0)
- open.Size = UDim2.new(0, 84, 0, 30)
- open.Style = Enum.ButtonStyle.RobloxButton
- open.Font = Enum.Font.SourceSansBold
- open.Text = "Open"
- open.TextColor3 = Color3.new(1, 1, 1)
- open.TextSize = 18
- open.MouseButton1Down:connect(function()
- main.Visible = true
- frame.Visible = false
- end)
- main.Name = "main"
- main.Parent = KnifeSimulator
- main.BackgroundColor3 = Color3.new(1, 1, 1)
- main.Position = UDim2.new(0.813736916, 0, 0.423676014, 0)
- main.Size = UDim2.new(0, 140, 0, 200)
- main.Visible = false
- main.Style = Enum.FrameStyle.DropShadow
- main.Active = true
- main.Draggable = true
- title.Name = "title"
- title.Parent = main
- title.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- title.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- title.BorderSizePixel = 0
- title.Position = UDim2.new(-0.0565275326, 0, -0.0413239934, 0)
- title.Size = UDim2.new(0, 138, 0, 23)
- title.Font = Enum.Font.SciFi
- title.Text = "Knife Sim GUI "
- title.TextColor3 = Color3.new(1, 1, 1)
- title.TextSize = 20
- credit.Name = "credit"
- credit.Parent = main
- credit.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- credit.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- credit.BorderSizePixel = 0
- credit.Position = UDim2.new(-0.0565275326, 0, 0.918675959, 0)
- credit.Size = UDim2.new(0, 138, 0, 23)
- credit.Font = Enum.Font.SciFi
- credit.Text = "Made By MixelGaming"
- credit.TextColor3 = Color3.new(1, 1, 1)
- credit.TextSize = 14
- havmoney.Name = "havmoney"
- havmoney.Parent = main
- havmoney.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- havmoney.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- havmoney.BorderSizePixel = 0
- havmoney.Position = UDim2.new(0.026542522, 0, 0.580654204, 0)
- havmoney.Size = UDim2.new(0, 117, 0, 37)
- havmoney.Font = Enum.Font.SourceSansBold
- havmoney.Text = "Auto Have Money"
- havmoney.TextColor3 = Color3.new(1, 1, 1)
- havmoney.TextSize = 16
- havmoney.MouseButton1Down:connect(function()
- while true do
- wait()
- game.ReplicatedStorage.forhackers:InvokeServer("hit", {})
- end
- end)
- tpallplayer.Name = "tpallplayer"
- tpallplayer.Parent = main
- tpallplayer.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- tpallplayer.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- tpallplayer.BorderSizePixel = 0
- tpallplayer.Position = UDim2.new(0.026542522, 0, 0.210654199, 0)
- tpallplayer.Size = UDim2.new(0, 117, 0, 37)
- tpallplayer.Font = Enum.Font.SourceSansBold
- tpallplayer.Text = "TP To All Player"
- tpallplayer.TextColor3 = Color3.new(1, 1, 1)
- tpallplayer.TextSize = 18
- tpallplayer.MouseButton1Down:connect(function()
- while wait() do
- for i,v in pairs(game:GetService'Players':GetPlayers()) do
- if v.Name ~= game:GetService'Players'.LocalPlayer.Name then
- repeat
- wait(0.15)
- game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
- game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Tool':Activate()
- until v.Character.Humanoid.Health == 0
- end
- end
- end
- end)
- close.Name = "close"
- close.Parent = main
- close.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- close.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- close.BorderSizePixel = 0
- close.Position = UDim2.new(0.878571391, 0, -0.0450000018, 0)
- close.Size = UDim2.new(0, 21, 0, 22)
- close.Font = Enum.Font.SourceSansBold
- close.Text = "X"
- close.TextColor3 = Color3.new(1, 1, 1)
- close.TextSize = 20
- close.MouseButton1Down:connect(function()
- frame.Visible = true
- main.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement