Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local Name = Instance.new("TextLabel")
- local Test1 = Instance.new("TextButton")
- local Test2 = Instance.new("TextButton")
- local Test3 = Instance.new("TextButton")
- local close = Instance.new("TextButton")
- local Credits = Instance.new("TextLabel")
- local OpenFrame = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
- main.BorderColor3 = Color3.fromRGB(255, 0, 255)
- main.BorderSizePixel = 5
- main.Position = UDim2.new(0.0105152475, 0, 0.0844793692, 0)
- main.Size = UDim2.new(0, 294, 0, 372)
- Name.Name = "Name"
- Name.Parent = main
- Name.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
- Name.BorderColor3 = Color3.fromRGB(255, 0, 255)
- Name.BorderSizePixel = 5
- Name.Size = UDim2.new(0, 294, 0, 50)
- Name.Font = Enum.Font.SourceSans
- Name.Text = "RoGhoul Gui"
- Name.TextColor3 = Color3.fromRGB(255, 255, 255)
- Name.TextScaled = true
- Name.TextSize = 14.000
- Name.TextWrapped = true
- close.Name = "close"
- close.Parent = main
- close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- close.BackgroundTransparency = 1.000
- close.Position = UDim2.new(0.935374141, 0, 0, 0)
- close.Size = UDim2.new(0, 13, 0, 50)
- close.Font = Enum.Font.GothamBlack
- close.Text = "X"
- close.TextColor3 = Color3.fromRGB(255, 255, 255)
- close.TextScaled = true
- close.TextSize = 14.000
- close.TextWrapped = true
- close.MouseButton1Down:connect(function()
- main.Visible = false
- end)
- Credits.Name = "Credits"
- Credits.Parent = main
- Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Credits.BackgroundTransparency = 1.000
- Credits.Position = UDim2.new(0, 0, 0.922043025, 0)
- Credits.Size = UDim2.new(0, 294, 0, 21)
- Credits.Font = Enum.Font.GothamBold
- Credits.Text = "-- Coming Soon --"
- Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
- Credits.TextScaled = true
- Credits.TextSize = 14.000
- Credits.TextWrapped = true
- OpenFrame.Name = "OpenFrame"
- OpenFrame.Parent = ScreenGui
- OpenFrame.Active = true
- OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- OpenFrame.BorderSizePixel = 0
- OpenFrame.Position = UDim2.new(0.513589501, 0, 0, 0)
- OpenFrame.Size = UDim2.new(0, 100, 0, 28)
- Open.Name = "Open"
- Open.Parent = OpenFrame
- Open.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Open.BorderSizePixel = 0
- Open.Size = UDim2.new(0, 100, 0, 28)
- Open.Font = Enum.Font.GothamBold
- Open.Text = "Open"
- Open.TextColor3 = Color3.fromRGB(255, 255, 255)
- Open.TextScaled = true
- Open.TextSize = 14.000
- Open.TextWrapped = true
- Open.MouseButton1Down:connect(function()
- main.Visible = true
- end)
- Test1.Name = "Test1"
- Test1.Parent = main
- Test1.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Test1.BorderSizePixel = 0
- Test1.Position = UDim2.new(0.159863949, 0, 0.225806445, 0)
- Test1.Size = UDim2.new(0, 200, 0, 50)
- Test1.Font = Enum.Font.Nunito
- Test1.Text = "Fling Push"
- Test1.TextColor3 = Color3.fromRGB(255, 255, 255)
- Test1.TextScaled = true
- Test1.TextSize = 14.000
- Test1.TextWrapped = true
- Test1.MouseButton1Down:connect(function()
- local down = false
- local loop = game:GetService('RunService')
- local ws = game:GetService('Workspace')
- local players = game:GetService('Players')
- local player = players.LocalPlayer
- local mouse = player:GetMouse()
- loop.Heartbeat:Connect(function()
- game:GetService("ReplicatedStorage").LocalRagdollEvent:Fire(false)
- if player.Character:FindFirstChild("Push") then
- ws[player.Name].Push.Enabled = true
- ws[player.Name].Push.PushEvent:FireServer()
- end
- if player.Character:FindFirstChild("ImpulseGrenade") then
- ws[player.Name].ImpulseGrenade.Enabled = true
- end
- end)
- mouse.Button1Down:connect(function()
- down = true
- mouse.Button1Up:connect(function()
- down = false
- end)
- while wait() do
- if down and
- player.Character:FindFirstChild("ImpulseGrenade") and
- player.Character:FindFirstChild("ImpulseGrenade").Enabled == true then
- player.Character.ImpulseGrenade:Activate()
- else
- break
- end
- end
- end)
- print('Executed Ragdoll Engine Script! by RoGhoul')
- end)
- Test2.Name = "Test2"
- Test2.Parent = main
- Test2.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Test2.BorderSizePixel = 0
- Test2.Position = UDim2.new(0.159863949, 0, 0.5, 0)
- Test2.Size = UDim2.new(0, 200, 0, 50)
- Test2.Font = Enum.Font.Nunito
- Test2.Text = "Invisible Map"
- Test2.TextColor3 = Color3.fromRGB(255, 255, 255)
- Test2.TextScaled = true
- Test2.TextSize = 14.000
- Test2.TextWrapped = true
- Test2.MouseButton1Down:connect(function()
- local tool
- for i,v in pairs (game.Players:GetPlayers()) do
- tool = v.Backpack:FindFirstChild'OddPotion' or v.Character:FindFirstChild'OddPotion'
- if tool then break end
- end
- for i,v in pairs(workspace.NewerMap:GetDescendants()) do
- tool.TransEvent:FireServer(v,1)
- end
- end)
- Test3.Name = "Test3"
- Test3.Parent = main
- Test3.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Test3.BorderSizePixel = 0
- Test3.Position = UDim2.new(0.159863949, 0, 0.766129017, 0)
- Test3.Size = UDim2.new(0, 200, 0, 50)
- Test3.Font = Enum.Font.Nunito
- Test3.Text = "NoClip"
- Test3.TextColor3 = Color3.fromRGB(255, 255, 255)
- Test3.TextScaled = true
- Test3.TextSize = 14.000
- Test3.TextWrapped = true
- Test3.MouseButton1Down:connect(function()
- noclip = false
- game:GetService('RunService').Stepped:connect(function()
- if noclip then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- noclip = not noclip
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- print('Loaded')
- print('Press "E" to noclip')
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement