Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made By TSR_Lorenzo For "Raven Exploit"
- -- Script Version: 1.1
- -- Instances:
- local arsenal = Instance.new("ScreenGui")
- local main = Instance.new("ImageLabel")
- local wSpeed = Instance.new("TextBox")
- local jPower = Instance.new("TextBox")
- local setWS = Instance.new("TextButton")
- local setJP = Instance.new("TextButton")
- --Properties:
- arsenal.Name = "arsenal"
- arsenal.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- main.Name = "main"
- main.Parent = arsenal
- main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- main.BackgroundTransparency = 1.000
- main.Position = UDim2.new(0.771515131, 0, 0.825983286, 0)
- main.Size = UDim2.new(0.22484839, 0, 0.163289636, 0)
- main.Image = "rbxassetid://3570695787"
- main.ImageColor3 = Color3.fromRGB(102, 184, 172)
- main.ScaleType = Enum.ScaleType.Slice
- main.SliceCenter = Rect.new(100, 100, 100, 100)
- main.SliceScale = 0.200
- wSpeed.Name = "wSpeed"
- wSpeed.Parent = main
- wSpeed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- wSpeed.BackgroundTransparency = 1.000
- wSpeed.Position = UDim2.new(0.0377358645, 0, 0, 0)
- wSpeed.Size = UDim2.new(0, 224, 0, 69)
- wSpeed.Font = Enum.Font.Fondamento
- wSpeed.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
- wSpeed.PlaceholderText = "Walk Speed"
- wSpeed.Text = ""
- wSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
- wSpeed.TextScaled = true
- wSpeed.TextSize = 14.000
- wSpeed.TextWrapped = true
- jPower.Name = "jPower"
- jPower.Parent = main
- jPower.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- jPower.BackgroundTransparency = 1.000
- jPower.Position = UDim2.new(0.0377358645, 0, 0.489285886, 0)
- jPower.Size = UDim2.new(0, 224, 0, 69)
- jPower.Font = Enum.Font.Fondamento
- jPower.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
- jPower.PlaceholderText = "Jump Power"
- jPower.Text = ""
- jPower.TextColor3 = Color3.fromRGB(0, 0, 0)
- jPower.TextScaled = true
- jPower.TextSize = 14.000
- jPower.TextWrapped = true
- setWS.Name = "setWS"
- setWS.Parent = main
- setWS.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- setWS.BackgroundTransparency = 1.000
- setWS.Position = UDim2.new(0.641509712, 0, 0, 0)
- setWS.Size = UDim2.new(0, 132, 0, 67)
- setWS.Font = Enum.Font.Cartoon
- setWS.Text = "Set"
- setWS.TextColor3 = Color3.fromRGB(0, 0, 0)
- setWS.TextScaled = true
- setWS.TextSize = 14.000
- setWS.TextWrapped = true
- setJP.Name = "setJP"
- setJP.Parent = main
- setJP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- setJP.BackgroundTransparency = 1.000
- setJP.Position = UDim2.new(0.641509712, 0, 0.489051104, 0)
- setJP.Size = UDim2.new(0, 132, 0, 69)
- setJP.Font = Enum.Font.Cartoon
- setJP.Text = "Set"
- setJP.TextColor3 = Color3.fromRGB(0, 0, 0)
- setJP.TextScaled = true
- setJP.TextSize = 14.000
- setJP.TextWrapped = true
- -- Scripts:
- local function VTVFK_fake_script() -- setWS.LocalScript
- local script = Instance.new('LocalScript', setWS)
- local player = game.Players.LocalPlayer
- local char = player.Character
- local hum = char:WaitForChild("Humanoid")
- script.Parent.MouseButton1Click:Connect(function()
- hum.WalkSpeed = script.Parent.Parent.wSpeed.Text
- end)
- end
- coroutine.wrap(VTVFK_fake_script)()
- local function HICSML_fake_script() -- setJP.LocalScript
- local script = Instance.new('LocalScript', setJP)
- local player = game.Players.LocalPlayer
- local char = player.Character
- local hum = char:WaitForChild("Humanoid")
- script.Parent.MouseButton1Click:Connect(function()
- hum.JumpPower = script.Parent.Parent.jPower.Text
- end)
- end
- coroutine.wrap(HICSML_fake_script)()
- local function ZRHHW_fake_script() -- main.Drag
- local script = Instance.new('LocalScript', main)
- local UserInputService = game:GetService("UserInputService")
- local gui = script.Parent
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function update(input)
- local delta = input.Position - dragStart
- gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- gui.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = gui.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end)
- gui.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- update(input)
- end
- end)
- end
- coroutine.wrap(ZRHHW_fake_script)()
Add Comment
Please, Sign In to add comment