Advertisement
RoGhoulXD

[Revamped] Ro Ghoul [Re+]

Jan 30th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.88 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local Name = Instance.new("TextLabel")
  9. local Test1 = Instance.new("TextButton")
  10. local Test2 = Instance.new("TextButton")
  11. local Test3 = Instance.new("TextButton")
  12. local close = Instance.new("TextButton")
  13. local Credits = Instance.new("TextLabel")
  14. local OpenFrame = Instance.new("Frame")
  15. local Open = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. main.Name = "main"
  23. main.Parent = ScreenGui
  24. main.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
  25. main.BorderColor3 = Color3.fromRGB(255, 0, 255)
  26. main.BorderSizePixel = 5
  27. main.Position = UDim2.new(0.0105152475, 0, 0.0844793692, 0)
  28. main.Size = UDim2.new(0, 294, 0, 372)
  29.  
  30. Name.Name = "Name"
  31. Name.Parent = main
  32. Name.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
  33. Name.BorderColor3 = Color3.fromRGB(255, 0, 255)
  34. Name.BorderSizePixel = 5
  35. Name.Size = UDim2.new(0, 294, 0, 50)
  36. Name.Font = Enum.Font.SourceSans
  37. Name.Text = "RoGhoul Gui"
  38. Name.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. Name.TextScaled = true
  40. Name.TextSize = 14.000
  41. Name.TextWrapped = true
  42.  
  43. close.Name = "close"
  44. close.Parent = main
  45. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. close.BackgroundTransparency = 1.000
  47. close.Position = UDim2.new(0.935374141, 0, 0, 0)
  48. close.Size = UDim2.new(0, 13, 0, 50)
  49. close.Font = Enum.Font.GothamBlack
  50. close.Text = "X"
  51. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  52. close.TextScaled = true
  53. close.TextSize = 14.000
  54. close.TextWrapped = true
  55. close.MouseButton1Down:connect(function()
  56. main.Visible = false
  57. end)
  58.  
  59. Credits.Name = "Credits"
  60. Credits.Parent = main
  61. Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62. Credits.BackgroundTransparency = 1.000
  63. Credits.Position = UDim2.new(0, 0, 0.922043025, 0)
  64. Credits.Size = UDim2.new(0, 294, 0, 21)
  65. Credits.Font = Enum.Font.GothamBold
  66. Credits.Text = "-- Coming Soon --"
  67. Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  68. Credits.TextScaled = true
  69. Credits.TextSize = 14.000
  70. Credits.TextWrapped = true
  71.  
  72. OpenFrame.Name = "OpenFrame"
  73. OpenFrame.Parent = ScreenGui
  74. OpenFrame.Active = true
  75. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  76. OpenFrame.BorderSizePixel = 0
  77. OpenFrame.Position = UDim2.new(0.513589501, 0, 0, 0)
  78. OpenFrame.Size = UDim2.new(0, 100, 0, 28)
  79.  
  80. Open.Name = "Open"
  81. Open.Parent = OpenFrame
  82. Open.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  83. Open.BorderSizePixel = 0
  84. Open.Size = UDim2.new(0, 100, 0, 28)
  85. Open.Font = Enum.Font.GothamBold
  86. Open.Text = "Open"
  87. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. Open.TextScaled = true
  89. Open.TextSize = 14.000
  90. Open.TextWrapped = true
  91. Open.MouseButton1Down:connect(function()
  92. main.Visible = true
  93. end)
  94.  
  95. Test1.Name = "Test1"
  96. Test1.Parent = main
  97. Test1.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  98. Test1.BorderSizePixel = 0
  99. Test1.Position = UDim2.new(0.159863949, 0, 0.225806445, 0)
  100. Test1.Size = UDim2.new(0, 200, 0, 50)
  101. Test1.Font = Enum.Font.Nunito
  102. Test1.Text = "Fling Push"
  103. Test1.TextColor3 = Color3.fromRGB(255, 255, 255)
  104. Test1.TextScaled = true
  105. Test1.TextSize = 14.000
  106. Test1.TextWrapped = true
  107. Test1.MouseButton1Down:connect(function()
  108. local down = false
  109. local loop = game:GetService('RunService')
  110. local ws = game:GetService('Workspace')
  111. local players = game:GetService('Players')
  112. local player = players.LocalPlayer
  113. local mouse = player:GetMouse()
  114.  
  115. loop.Heartbeat:Connect(function()
  116. game:GetService("ReplicatedStorage").LocalRagdollEvent:Fire(false)
  117. if player.Character:FindFirstChild("Push") then
  118. ws[player.Name].Push.Enabled = true
  119. ws[player.Name].Push.PushEvent:FireServer()
  120. end
  121. if player.Character:FindFirstChild("ImpulseGrenade") then
  122. ws[player.Name].ImpulseGrenade.Enabled = true
  123. end
  124. end)
  125.  
  126. mouse.Button1Down:connect(function()
  127. down = true
  128. mouse.Button1Up:connect(function()
  129. down = false
  130. end)
  131. while wait() do
  132. if down and
  133. player.Character:FindFirstChild("ImpulseGrenade") and
  134. player.Character:FindFirstChild("ImpulseGrenade").Enabled == true then
  135. player.Character.ImpulseGrenade:Activate()
  136. else
  137. break
  138. end
  139. end
  140. end)
  141.  
  142. print('Executed Ragdoll Engine Script! by RoGhoul')
  143. end)
  144.  
  145. Test2.Name = "Test2"
  146. Test2.Parent = main
  147. Test2.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  148. Test2.BorderSizePixel = 0
  149. Test2.Position = UDim2.new(0.159863949, 0, 0.5, 0)
  150. Test2.Size = UDim2.new(0, 200, 0, 50)
  151. Test2.Font = Enum.Font.Nunito
  152. Test2.Text = "Invisible Map"
  153. Test2.TextColor3 = Color3.fromRGB(255, 255, 255)
  154. Test2.TextScaled = true
  155. Test2.TextSize = 14.000
  156. Test2.TextWrapped = true
  157. Test2.MouseButton1Down:connect(function()
  158. local tool
  159. for i,v in pairs (game.Players:GetPlayers()) do
  160. tool = v.Backpack:FindFirstChild'OddPotion' or v.Character:FindFirstChild'OddPotion'
  161. if tool then break end
  162. end
  163.  
  164. for i,v in pairs(workspace.NewerMap:GetDescendants()) do
  165. tool.TransEvent:FireServer(v,1)
  166. end
  167. end)
  168.  
  169. Test3.Name = "Test3"
  170. Test3.Parent = main
  171. Test3.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  172. Test3.BorderSizePixel = 0
  173. Test3.Position = UDim2.new(0.159863949, 0, 0.766129017, 0)
  174. Test3.Size = UDim2.new(0, 200, 0, 50)
  175. Test3.Font = Enum.Font.Nunito
  176. Test3.Text = "NoClip"
  177. Test3.TextColor3 = Color3.fromRGB(255, 255, 255)
  178. Test3.TextScaled = true
  179. Test3.TextSize = 14.000
  180. Test3.TextWrapped = true
  181. Test3.MouseButton1Down:connect(function()
  182. noclip = false
  183. game:GetService('RunService').Stepped:connect(function()
  184. if noclip then
  185. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  186. end
  187. end)
  188. plr = game.Players.LocalPlayer
  189. mouse = plr:GetMouse()
  190. mouse.KeyDown:connect(function(key)
  191.  
  192. if key == "e" then
  193. noclip = not noclip
  194. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  195. end
  196. end)
  197. print('Loaded')
  198. print('Press "E" to noclip')
  199. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement