suss_bacccc

Untitled

May 30th, 2023
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.13 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local fuckingSkid = Instance.new("ScreenGui")
  7. local FGUI = Instance.new("Frame")
  8. local Sex = Instance.new("TextButton")
  9. local VictimTEXT = Instance.new("TextBox")
  10. local banger = Instance.new("TextBox")
  11. local TextLabel = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. fuckingSkid.Name = "fuckingSkid"
  16. fuckingSkid.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. FGUI.Name = "FGUI"
  19. FGUI.Parent = fuckingSkid
  20. FGUI.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  21. FGUI.BorderColor3 = Color3.fromRGB(0, 0, 255)
  22. FGUI.Draggable = true
  23. FGUI.Position = UDim2.new(0.314033359, 0, 0.195571423, 0)
  24. FGUI.Size = UDim2.new(0, 317, 0, 271)
  25.  
  26. Sex.Name = "Sex"
  27. Sex.Parent = FGUI
  28. Sex.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  29. Sex.BorderColor3 = Color3.fromRGB(0, 0, 255)
  30. Sex.Position = UDim2.new(0.343684554, 0, 0.406121761, 0)
  31. Sex.Size = UDim2.new(0, 99, 0, 31)
  32. Sex.Font = Enum.Font.SourceSansBold
  33. Sex.Text = "bang da MF"
  34. Sex.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. Sex.TextSize = 20.000
  36.  
  37. VictimTEXT.Name = "VictimTEXT"
  38. VictimTEXT.Parent = FGUI
  39. VictimTEXT.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  40. VictimTEXT.BorderColor3 = Color3.fromRGB(0, 0, 255)
  41. VictimTEXT.Position = UDim2.new(0.286943197, 0, 0.800955772, 0)
  42. VictimTEXT.Size = UDim2.new(0, 133, 0, 27)
  43. VictimTEXT.Font = Enum.Font.SourceSansBold
  44. VictimTEXT.PlaceholderText = "victim"
  45. VictimTEXT.Text = ""
  46. VictimTEXT.TextColor3 = Color3.fromRGB(255, 255, 255)
  47. VictimTEXT.TextSize = 20.000
  48.  
  49. banger.Name = "banger"
  50. banger.Parent = FGUI
  51. banger.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  52. banger.BorderColor3 = Color3.fromRGB(0, 0, 255)
  53. banger.Position = UDim2.new(0.286943197, 0, 0.612763882, 0)
  54. banger.Size = UDim2.new(0, 133, 0, 27)
  55. banger.Font = Enum.Font.SourceSansBold
  56. banger.PlaceholderText = "banger"
  57. banger.Text = ""
  58. banger.TextColor3 = Color3.fromRGB(255, 255, 255)
  59. banger.TextSize = 20.000
  60.  
  61. TextLabel.Parent = FGUI
  62. TextLabel.BackgroundColor3 = Color3.fromRGB(74, 74, 74)
  63. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 255)
  64. TextLabel.Position = UDim2.new(0.179810733, 0, 0.136531368, 0)
  65. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  66. TextLabel.Font = Enum.Font.SourceSans
  67. TextLabel.Text = "FE rape gui (credits to h1iAlt)"
  68. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. TextLabel.TextScaled = true
  70. TextLabel.TextSize = 14.000
  71. TextLabel.TextWrapped = true
  72.  
  73. -- Scripts:
  74.  
  75. local function IGATHX_fake_script() -- FGUI.LocalScript
  76. local script = Instance.new('LocalScript', FGUI)
  77.  
  78. script.Parent.Sex.MouseButton1Click:Connect(function()
  79.  
  80. local victim = script.Parent.VictimTEXT.Text
  81. local stupid = Instance.new('Animation')
  82. stupid.AnimationId = 'rbxassetid://148840371'
  83. hummy = game:GetService("Players")[script.Parent.banger.Text]
  84. pcall(function()
  85. hummy.Parent.Pants:Destroy()
  86. end)
  87. pcall(function()
  88. hummy.Parent.Shirt:Destroy()
  89. end)
  90. local notfunny = hummy:LoadAnimation(stupid)
  91. notfunny:Play()
  92. notfunny:AdjustSpeed(10)
  93. while hummy.Parent.Parent ~= nil do
  94. wait()
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[victim].Character.HumanoidRootPart.CFrame
  96. end
  97. end)
  98. end
  99. coroutine.wrap(IGATHX_fake_script)()
  100. local function MXQFKD_fake_script() -- FGUI.Smooth GUI Dragging
  101. local script = Instance.new('LocalScript', FGUI)
  102.  
  103. local UserInputService = game:GetService("UserInputService")
  104. local runService = (game:GetService("RunService"));
  105.  
  106. local gui = script.Parent
  107.  
  108. local dragging
  109. local dragInput
  110. local dragStart
  111. local startPos
  112.  
  113. function Lerp(a, b, m)
  114. return a + (b - a) * m
  115. end;
  116.  
  117. local lastMousePos
  118. local lastGoalPos
  119. local DRAG_SPEED = (8); -- // The speed of the UI darg.
  120. function Update(dt)
  121. if not (startPos) then return end;
  122. if not (dragging) and (lastGoalPos) then
  123. 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))
  124. return
  125. end;
  126.  
  127. local delta = (lastMousePos - UserInputService:GetMouseLocation())
  128. local xGoal = (startPos.X.Offset - delta.X);
  129. local yGoal = (startPos.Y.Offset - delta.Y);
  130. lastGoalPos = UDim2.new(startPos.X.Scale, xGoal, startPos.Y.Scale, yGoal)
  131. 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))
  132. end;
  133.  
  134. gui.InputBegan:Connect(function(input)
  135. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  136. dragging = true
  137. dragStart = input.Position
  138. startPos = gui.Position
  139. lastMousePos = UserInputService:GetMouseLocation()
  140.  
  141. input.Changed:Connect(function()
  142. if input.UserInputState == Enum.UserInputState.End then
  143. dragging = false
  144. end
  145. end)
  146. end
  147. end)
  148.  
  149. gui.InputChanged:Connect(function(input)
  150. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  151. dragInput = input
  152. end
  153. end)
  154.  
  155. runService.Heartbeat:Connect(Update)
  156. end
  157. coroutine.wrap(MXQFKD_fake_script)()
  158.  
Add Comment
Please, Sign In to add comment