Sie sind auf Seite 1von 2

--GUI MADE BY XCROSSY :D

local KnifeSimGui = Instance.new("ScreenGui")


local Frame = Instance.new("Frame")
local GuiCredits = Instance.new("TextLabel")
local TpKill = Instance.new("TextButton")
local SpeedAndJump = Instance.new("TextButton")
local Reset = Instance.new("TextButton")

KnifeSimGui.Name = "KnifeSimGui"
KnifeSimGui.Parent = game.Players.LocalPlayer.PlayerGui

Frame.Parent = KnifeSimGui
Frame.BackgroundColor3 = Color3.new(1, 1, 1)
Frame.Position = UDim2.new(0.351212353, 0, 0.795966804, 0)
Frame.Size = UDim2.new(0, 328, 0, 111)
Frame.Style = Enum.FrameStyle.RobloxSquare

GuiCredits.Name = "GuiCredits"
GuiCredits.Parent = Frame
GuiCredits.BackgroundColor3 = Color3.new(1, 1, 1)
GuiCredits.BackgroundTransparency = 1
GuiCredits.BorderSizePixel = 0
GuiCredits.Position = UDim2.new(-0.0426829271, 0, 0.805555582, 0)
GuiCredits.Size = UDim2.new(0, 200, 0, 20)
GuiCredits.Font = Enum.Font.SourceSansBold
GuiCredits.Text = "Gui Created by: Xcrossy"
GuiCredits.TextColor3 = Color3.new(1, 1, 1)
GuiCredits.TextScaled = true
GuiCredits.TextSize = 14
GuiCredits.TextWrapped = true

TpKill.Name = "TpKill"
TpKill.Parent = Frame
TpKill.BackgroundColor3 = Color3.new(0, 1, 0.498039)
TpKill.Position = UDim2.new(0.234756097, 0, 0, 0)
TpKill.Size = UDim2.new(0, 163, 0, 30)
TpKill.Font = Enum.Font.SourceSans
TpKill.Text = "TP KILL"
TpKill.TextColor3 = Color3.new(0, 0, 0)
TpKill.TextScaled = true
TpKill.TextSize = 14
TpKill.TextWrapped = true

SpeedAndJump.Name = "SpeedAndJump"
SpeedAndJump.Parent = Frame
SpeedAndJump.BackgroundColor3 = Color3.new(0, 1, 0.498039)
SpeedAndJump.BorderColor3 = Color3.new(0, 1, 0.498039)
SpeedAndJump.Position = UDim2.new(0.234756097, 0, 0.444444448, 0)
SpeedAndJump.Size = UDim2.new(0, 163, 0, 30)
SpeedAndJump.Font = Enum.Font.SourceSans
SpeedAndJump.Text = "Speed + jump power"
SpeedAndJump.TextColor3 = Color3.new(0, 0, 0)
SpeedAndJump.TextScaled = true
SpeedAndJump.TextSize = 14
SpeedAndJump.TextWrapped = true

Reset.Name = "Reset"
Reset.Parent = Frame
Reset.BackgroundColor3 = Color3.new(0, 1, 0.498039)
Reset.BorderColor3 = Color3.new(0, 1, 0.498039)
Reset.BorderSizePixel = 0
Reset.Position = UDim2.new(0.795731723, 0, 0.00900901109, 0)
Reset.Size = UDim2.new(0, 43, 0, 72)
Reset.Font = Enum.Font.SourceSans
Reset.Text = "Reset Jump and speed"
Reset.TextColor3 = Color3.new(0, 0, 0)
Reset.TextScaled = true
Reset.TextSize = 14
Reset.TextWrapped = true

KnifeSimGui.ResetOnSpawn = false

SpeedAndJump.MouseButton1Click:connect(function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 80
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
end)

Reset.MouseButton1Click:connect(function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
end)

TpKill.MouseButton1Click:connect(function()
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)

Das könnte Ihnen auch gefallen