Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local fuckingSkid = Instance.new("ScreenGui")
- local FGUI = Instance.new("Frame")
- local Sex = Instance.new("TextButton")
- local VictimTEXT = Instance.new("TextBox")
- local banger = Instance.new("TextBox")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- fuckingSkid.Name = "fuckingSkid"
- fuckingSkid.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- FGUI.Name = "FGUI"
- FGUI.Parent = fuckingSkid
- FGUI.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
- FGUI.BorderColor3 = Color3.fromRGB(0, 0, 255)
- FGUI.Draggable = true
- FGUI.Position = UDim2.new(0.314033359, 0, 0.195571423, 0)
- FGUI.Size = UDim2.new(0, 317, 0, 271)
- Sex.Name = "Sex"
- Sex.Parent = FGUI
- Sex.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
- Sex.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Sex.Position = UDim2.new(0.343684554, 0, 0.406121761, 0)
- Sex.Size = UDim2.new(0, 99, 0, 31)
- Sex.Font = Enum.Font.SourceSansBold
- Sex.Text = "bang da MF"
- Sex.TextColor3 = Color3.fromRGB(255, 255, 255)
- Sex.TextSize = 20.000
- VictimTEXT.Name = "VictimTEXT"
- VictimTEXT.Parent = FGUI
- VictimTEXT.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
- VictimTEXT.BorderColor3 = Color3.fromRGB(0, 0, 255)
- VictimTEXT.Position = UDim2.new(0.286943197, 0, 0.800955772, 0)
- VictimTEXT.Size = UDim2.new(0, 133, 0, 27)
- VictimTEXT.Font = Enum.Font.SourceSansBold
- VictimTEXT.PlaceholderText = "victim"
- VictimTEXT.Text = ""
- VictimTEXT.TextColor3 = Color3.fromRGB(255, 255, 255)
- VictimTEXT.TextSize = 20.000
- banger.Name = "banger"
- banger.Parent = FGUI
- banger.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
- banger.BorderColor3 = Color3.fromRGB(0, 0, 255)
- banger.Position = UDim2.new(0.286943197, 0, 0.612763882, 0)
- banger.Size = UDim2.new(0, 133, 0, 27)
- banger.Font = Enum.Font.SourceSansBold
- banger.PlaceholderText = "banger"
- banger.Text = ""
- banger.TextColor3 = Color3.fromRGB(255, 255, 255)
- banger.TextSize = 20.000
- TextLabel.Parent = FGUI
- TextLabel.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 255)
- TextLabel.Position = UDim2.new(0.179810733, 0, 0.136531368, 0)
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "FE rape gui (credits to h1iAlt)"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- -- Scripts:
- local function IGATHX_fake_script() -- FGUI.LocalScript
- local script = Instance.new('LocalScript', FGUI)
- script.Parent.Sex.MouseButton1Click:Connect(function()
- local victim = script.Parent.VictimTEXT.Text
- local stupid = Instance.new('Animation')
- stupid.AnimationId = 'rbxassetid://148840371'
- hummy = game:GetService("Players")[script.Parent.banger.Text]
- pcall(function()
- hummy.Parent.Pants:Destroy()
- end)
- pcall(function()
- hummy.Parent.Shirt:Destroy()
- end)
- local notfunny = hummy:LoadAnimation(stupid)
- notfunny:Play()
- notfunny:AdjustSpeed(10)
- while hummy.Parent.Parent ~= nil do
- wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[victim].Character.HumanoidRootPart.CFrame
- end
- end)
- end
- coroutine.wrap(IGATHX_fake_script)()
- local function MXQFKD_fake_script() -- FGUI.Smooth GUI Dragging
- local script = Instance.new('LocalScript', FGUI)
- local UserInputService = game:GetService("UserInputService")
- local runService = (game:GetService("RunService"));
- local gui = script.Parent
- local dragging
- local dragInput
- local dragStart
- local startPos
- function Lerp(a, b, m)
- return a + (b - a) * m
- end;
- local lastMousePos
- local lastGoalPos
- local DRAG_SPEED = (8); -- // The speed of the UI darg.
- function Update(dt)
- if not (startPos) then return end;
- if not (dragging) and (lastGoalPos) then
- gui.Position = UDim2.new(startPos.X.Scale, Lerp(gui.Position.X.Offset, lastGoalPos.X.Offset, dt * DRAG_SPEED), startPos.Y.Scale, Lerp(gui.Position.Y.Offset, lastGoalPos.Y.Offset, dt * DRAG_SPEED))
- return
- end;
- local delta = (lastMousePos - UserInputService:GetMouseLocation())
- local xGoal = (startPos.X.Offset - delta.X);
- local yGoal = (startPos.Y.Offset - delta.Y);
- lastGoalPos = UDim2.new(startPos.X.Scale, xGoal, startPos.Y.Scale, yGoal)
- gui.Position = UDim2.new(startPos.X.Scale, Lerp(gui.Position.X.Offset, xGoal, dt * DRAG_SPEED), startPos.Y.Scale, Lerp(gui.Position.Y.Offset, yGoal, dt * DRAG_SPEED))
- 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
- lastMousePos = UserInputService:GetMouseLocation()
- 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)
- runService.Heartbeat:Connect(Update)
- end
- coroutine.wrap(MXQFKD_fake_script)()
Add Comment
Please, Sign In to add comment