FantasyGamer

Untitled

May 14th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.35 KB | None | 0 0
  1. --== Variables --==
  2.  
  3. PLAYER = game.Players.LocalPlayer
  4. G1 = Instance.new("ScreenGui",PLAYER.PlayerGui)
  5. F1 = Instance.new("Frame",G1)
  6. T = Instance.new("TextLabel",F1)
  7. T1 = Instance.new("TextLabel",F1)
  8. B1 = Instance.new("TextBox",F1)
  9. TL = Instance.new("TextLabel",F1)
  10. TL2 = Instance.new("TextLabel",F1)
  11. TL3 = Instance.new("TextLabel",F1)
  12. TL4 = Instance.new("TextLabel",F1)
  13. B2 = Instance.new("TextBox",F1)
  14. T11 = " >Loading Prompt Gui.. "
  15.  
  16. F1.Visible = true
  17. F1.Size = UDim2.new(0,500,0,450)
  18. F1.Position = UDim2.new(0.5,-250,0.5,-225)
  19. F1.BackgroundTransparency = 0
  20. F1.BorderSizePixel = 5
  21. F1.BorderColor3 = Color3.new(0/255,202/255,0/255)
  22. F1.BackgroundColor3 = Color3.new(45/255,45/255,45/255)
  23.  
  24. T.Visible = true
  25. T.Size = UDim2.new(0,500,0,50)
  26. T.Position = UDim2.new(0,0,0,0)
  27. T.BackgroundTransparency = 1
  28. T.BorderSizePixel = 0
  29. T.Text = "Prompt"
  30. T.TextColor3 = Color3.new(0/255,202/255,0/255)
  31. T.TextStrokeColor3 = Color3.new(45/255,45/255,45/255)
  32. T.TextStrokeTransparency = 0
  33. T.Font = "ArialBold"
  34. T.FontSize = Enum.FontSize.Size28
  35.  
  36. T1.Visible = true
  37. T1.Size = UDim2.new(0,500,0,50)
  38. T1.Position = UDim2.new(0,5,0,50)
  39. T1.BackgroundTransparency = 1
  40. T1.Text = ">"
  41. T1.Font = "ArialBold"
  42. T1.FontSize = Enum.FontSize.Size18
  43. T1.TextColor3 = Color3.new(0/255,202/255,0/255)
  44. T1.TextStrokeTransparency = 0
  45. T1.TextStrokeColor3 = Color3.new(45/255,45/255,45/255)
  46. T1.TextXAlignment = Enum.TextXAlignment.Left
  47.  
  48. TL2.Visible = true
  49. TL2.Size = UDim2.new(0,500,0,25)
  50. TL2.Position = UDim2.new(0,0,0,200)
  51. TL2.BackgroundTransparency = 1
  52. TL2.BorderSizePixel = 0
  53. TL2.Text = "E to make visible and non visible!"
  54. TL2.TextColor3 = Color3.new(0/255,202/255,0/255)
  55. TL2.TextStrokeColor3 = Color3.new(45/255,45/255,45/255)
  56. TL2.TextStrokeTransparency = 0
  57. TL2.Font = "ArialBold"
  58. TL2.FontSize = Enum.FontSize.Size18
  59.  
  60. TL3.Visible = true
  61. TL3.Size = UDim2.new(0,500,0,25)
  62. TL3.Position = UDim2.new(0,0,0,225)
  63. TL3.BackgroundTransparency = 1
  64. TL3.BorderSizePixel = 0
  65. TL3.Text = "Q to activate (wont work if its not activated)!"
  66. TL3.TextColor3 = Color3.new(0/255,202/255,0/255)
  67. TL3.TextStrokeColor3 = Color3.new(45/255,45/255,45/255)
  68. TL3.TextStrokeTransparency = 0
  69. TL3.Font = "ArialBold"
  70. TL3.FontSize = Enum.FontSize.Size18
  71.  
  72. TL4.Visible = true
  73. TL4.Size = UDim2.new(0,500,0,25)
  74. TL4.Position = UDim2.new(0,0,0,250)
  75. TL4.BackgroundTransparency = 1
  76. TL4.BorderSizePixel = 0
  77. TL4.Text = "R to rape victim!"
  78. TL4.TextColor3 = Color3.new(0/255,202/255,0/255)
  79. TL4.TextStrokeColor3 = Color3.new(45/255,45/255,45/255)
  80. TL4.TextStrokeTransparency = 0
  81. TL4.Font = "ArialBold"
  82. TL4.FontSize = Enum.FontSize.Size18
  83.  
  84. B1.Visible = false
  85. B1.BackgroundColor3 = Color3.new(0,202,0)
  86. B1.BackgroundTransparency = 0
  87. B1.Position = UDim2.new(0,20,0,50)
  88. B1.Size = UDim2.new(0,225,0,150)
  89. B1.Font = "ArialBold"
  90. B1.FontSize = Enum.FontSize.Size18
  91. B1.Text = "Your Name"
  92. B1.TextColor3 = Color3.new(255/255,255/255,255/255)
  93. B1.TextStrokeColor3 = Color3.new(0/255,202/255,0/255)
  94. B1.TextStrokeTransparency = 0
  95. B1.TextWrapped = true
  96.  
  97. B2.Visible = false
  98. B2.BackgroundColor3 = Color3.new(0,202,0)
  99. B2.BackgroundTransparency = 0
  100. B2.Position = UDim2.new(0,255,0,50)
  101. B2.Size = UDim2.new(0,225,0,150)
  102. B2.Font = "ArialBold"
  103. B2.FontSize = Enum.FontSize.Size18
  104. B2.Text = "Victim's Name"
  105. B2.TextColor3 = Color3.new(255/255,255/255,255/255)
  106. B2.TextStrokeColor3 = Color3.new(0/255,202/255,0/255)
  107. B2.TextStrokeTransparency = 0
  108. B2.TextWrapped = true
  109.  
  110. SOUND = Instance.new("Sound",G1)
  111. SOUND.SoundId = "http://www.roblox.com/asset/?id=14863866"
  112. SOUND.Pitch = 1
  113. SOUND.Volume = 0.8
  114.  
  115. --== Main Code :: DONT TOUCH :: ==--
  116.  
  117. for i = 1,string.len(T11),1 do
  118. SOUND:play()
  119. T1.Text = string.sub(T11,1,i)
  120. wait(0.1)
  121. end
  122.  
  123. wait(2)
  124.  
  125. coroutine.resume(coroutine.create(function()
  126. T1:Destroy()
  127. end))
  128.  
  129. --== Load Buttons ==--
  130.  
  131. B1.Visible = true
  132. B2.Visible = true
  133.  
  134. local mouse = PLAYER:GetMouse()
  135. local active = false
  136.  
  137. mouse.KeyDown:connect(function(key)
  138.  
  139. if (key == "r") and active == true then
  140.  
  141. local hint = Instance.new("Hint",workspace)
  142. hint.Text = "Rape Initiated on "..B2.Text.."!"
  143. wait(3)
  144. hint:remove()
  145.  
  146.  
  147. function fWeld(zName, zParent, zPart0, zPart1, zCoco, a, b, c, d, e, f)
  148. local funcw = Instance.new("Weld")
  149. funcw.Name = zName
  150. funcw.Parent = zParent
  151. funcw.Part0 = zPart0
  152. funcw.Part1 = zPart1
  153. if (zCoco == true) then
  154. funcw.C0 = CFrame.new(a, b, c) * CFrame.fromEulerAnglesXYZ(d, e, f)
  155. else
  156. funcw.C1 = CFrame.new(a, b, c) * CFrame.fromEulerAnglesXYZ(d, e, f)
  157. end
  158. return funcw
  159. end
  160. function fun(n1, n2)
  161. pcall(function()
  162. t1 = game.Players[n1].Character.Torso
  163. t2 = game.Players[n2].Character.Torso
  164. t2.Parent.Humanoid.PlatformStand = true
  165. t1["Left Shoulder"]:Remove()
  166. ls1 = Instance.new("Weld")
  167. ls1.Parent = t1
  168. ls1.Part0 = t1
  169. ls1.Part1 = t1.Parent["Left Arm"]
  170. ls1.C0 = CFrame.new(-1.5,0,0)
  171. ls1.Name = "Left Shoulder"
  172. t1["Right Shoulder"]:Remove()
  173. rs1 = Instance.new("Weld")
  174. rs1.Parent = t1
  175. rs1.Part0 = t1
  176. rs1.Part1 = t1.Parent["Right Arm"]
  177. rs1.C0 = CFrame.new(1.5,0,0)
  178. rs1.Name = "Right Shoulder"
  179. t2["Left Shoulder"]:Remove()
  180. ls2 = Instance.new("Weld")
  181. ls2.Parent = t2
  182. ls2.Part0 = t2
  183. ls2.Part1 = t2.Parent["Left Arm"]
  184. ls2.C0 = CFrame.new(-1.5,0,0)
  185. ls2.Name = "Left Shoulder"
  186. t2["Right Shoulder"]:Remove()
  187. rs2 = Instance.new("Weld")
  188. rs2.Parent = t2
  189. rs2.Part0 = t2
  190. rs2.Part1 = t2.Parent["Right Arm"]
  191. rs2.C0 = CFrame.new(1.5,0,0)
  192. rs2.Name = "Right Shoulder"
  193. t2["Left Hip"]:Remove()
  194. lh2 = Instance.new("Weld")
  195. lh2.Parent = t2
  196. lh2.Part0 = t2
  197. lh2.Part1 = t2.Parent["Left Leg"]
  198. lh2.C0 = CFrame.new(-0.5,-2,0)
  199. lh2.Name = "Left Hip"
  200. t2["Right Hip"]:Remove()
  201. rh2 = Instance.new("Weld")
  202. rh2.Parent = t2
  203. rh2.Part0 = t2
  204. rh2.Part1 = t2.Parent["Right Leg"]
  205. rh2.C0 = CFrame.new(0.5,-2,0)
  206. rh2.Name = "Right Hip"
  207. local d = Instance.new("Part")
  208. d.TopSurface = 0
  209. d.BottomSurface = 0
  210. d.CanCollide = false
  211. d.BrickColor = BrickColor.new("Medium stone grey")
  212. d.Shape = "Ball"
  213. d.Parent = t1
  214. d.Size = Vector3.new(1,1,1)
  215. local dm = Instance.new("SpecialMesh")
  216. dm.MeshType = "Sphere"
  217. dm.Parent = d
  218. dm.Scale = Vector3.new(0.4,0.4,0.4)
  219. fWeld("weld",t1,t1,d,true,-0.2,-1.3,-0.6,0,0,0)
  220. d2 = d:Clone()
  221. d2.Parent = t1
  222. fWeld("weld",t1,t1,d2,true,0.2,-1.3,-0.6,0,0,0)
  223. local c = Instance.new("Part")
  224. c.TopSurface = 0
  225. c.BottomSurface = 0
  226. c.CanCollide = false
  227. c.BrickColor = BrickColor.new("Pastel brown")
  228. c.Parent = t1
  229. c.formFactor = "Custom"
  230. c.Size = Vector3.new(0.4,1.3,0.4)
  231. cm = Instance.new("CylinderMesh")
  232. cm.Parent = c
  233. a = fWeld("weld",t1,t1,c,true,0,-1,-0.52+(-c.Size.y/2),math.rad(-80),0,0)
  234. c2 = d:Clone()
  235. c2.BrickColor = BrickColor.new("Medium stone grey")
  236. c2.Mesh.Scale = Vector3.new(0.4,0.62,0.4)
  237. c2.Parent = t1
  238. fWeld("weld",c,c,c2,true,0,0+(c.Size.y/2),0,math.rad(-10),0,0)
  239. local bl = Instance.new("Part")
  240. bl.TopSurface = 0
  241. bl.BottomSurface = 0
  242. bl.CanCollide = false
  243. bl.BrickColor = BrickColor.new("Pastel brown")
  244. bl.Shape = "Ball"
  245. bl.Parent = t2
  246. bl.Size = Vector3.new(1,1,1)
  247. local dm = Instance.new("SpecialMesh")
  248. dm.MeshType = "Sphere"
  249. dm.Parent = bl
  250. dm.Scale = Vector3.new(1.2,1.2,1.2)
  251. fWeld("weld",t2,t2,bl,true,-0.5,0.5,-0.6,0,0,0)
  252. local br = Instance.new("Part")
  253. br.TopSurface = 0
  254. br.BottomSurface = 0
  255. br.CanCollide = false
  256. br.BrickColor = BrickColor.new("Pastel brown")
  257. br.Shape = "Ball"
  258. br.Parent = t2
  259. br.Size = Vector3.new(1,1,1)
  260. local dm = Instance.new("SpecialMesh")
  261. dm.MeshType = "Sphere"
  262. dm.Parent = br
  263. dm.Scale = Vector3.new(1.2,1.2,1.2)
  264. fWeld("weld",t2,t2,br,true,0.5,0.5,-0.6,0,0,0)
  265. local bln = Instance.new("Part")
  266. bln.TopSurface = 0
  267. bln.BottomSurface = 0
  268. bln.CanCollide = false
  269. bln.Shape = "Ball"
  270. bln.Parent = t2
  271. bln.Size = Vector3.new(1,1,1)
  272. local dm = Instance.new("SpecialMesh")
  273. dm.MeshType = "Sphere"
  274. dm.Parent = bln
  275. dm.Scale = Vector3.new(0.2,0.2,0.2)
  276. fWeld("weld",t2,t2,bln,true,-0.5,0.5,-1.2,0,0,0)
  277. local brn = Instance.new("Part")
  278. brn.TopSurface = 0
  279. brn.BottomSurface = 0
  280. brn.CanCollide = false
  281. brn.Shape = "Ball"
  282. brn.Parent = t2
  283. brn.Size = Vector3.new(1,1,1)
  284. local dm = Instance.new("SpecialMesh")
  285. dm.MeshType = "Sphere"
  286. dm.Parent = brn
  287. dm.Scale = Vector3.new(0.2,0.2,0.2)
  288. fWeld("weld",t2,t2,brn,true,0.5,0.5,-1.2,0,0,0)
  289. lh2.C1 = CFrame.new(0,-1.5,-0.5) * CFrame.Angles(0.9,-0.4,0)
  290. rh2.C1 = CFrame.new(0,-1.5,-0.5) * CFrame.Angles(0.9,0.4,0)
  291. ls2.C1 = CFrame.new(-0.5,-1.3,-0.5) * CFrame.Angles(0.9,-0.4,0)
  292. rs2.C1 = CFrame.new(0.5,-1.3,-0.5) * CFrame.Angles(0.9,0.4,0)
  293. ls1.C1 = CFrame.new(-0.5,0.7,0) * CFrame.Angles(-0.9,-0.4,0)
  294. rs1.C1 = CFrame.new(0.5,0.7,0) * CFrame.Angles(-0.9,0.4,0)
  295. if t1:findFirstChild("weldx") ~= nil then
  296. t1.weldx:Remove()
  297. end
  298. we = fWeld("weldx", t1, t1, t2, true, 0, -0.9, -1.3, math.rad(-90), 0, 0)
  299. n = t2.Neck
  300. n.C0 = CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-210), math.rad(180), 0)
  301. end)
  302. coroutine.resume(coroutine.create(function()
  303. while wait() do
  304. for i = 1,6 do
  305. we.C1 = we.C1 * CFrame.new(0,-0.3,0)
  306. wait()
  307. end
  308.  
  309. for i = 1,6 do
  310. we.C1 = we.C1 * CFrame.new(0,0.3,0)
  311. wait()
  312. end
  313. end
  314. end))
  315. end
  316. fun(B1.Text, B2.Text)
  317.  
  318. elseif (key == "e") then
  319.  
  320. if F1.Visible == true then
  321. F1.Visible = false
  322. else
  323. F1.Visible = true
  324. end
  325.  
  326. elseif (key == "q") then
  327.  
  328. if active == true then
  329. active = false
  330. else
  331. active = true
  332. end
  333.  
  334. local hint = Instance.new("Hint",workspace)
  335.  
  336. if active == true then
  337. hint.Text = "Active : Enabled"
  338. wait(3)
  339. hint:remove()
  340. else
  341. hint.Text = "Active : Disabled"
  342. wait(3)
  343. hint:remove()
  344. end
  345.  
  346.  
  347. end
  348. end)
Add Comment
Please, Sign In to add comment