Created
February 24, 2020 12:26
-
-
Save DinosaurXxX/298ce1db85febe14ce4daf45ea0ce1cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Gui to Lua | |
-- Version: 3 | |
-- Instances: | |
local GetrudeGUI = Instance.new("ScreenGui") | |
local Main = Instance.new("Frame") | |
local Name = Instance.new("TextLabel") | |
local Noclip = Instance.new("TextButton") | |
local XRayON = Instance.new("TextButton") | |
local XRayOFF = Instance.new("TextButton") | |
local BTools = Instance.new("TextButton") | |
local ClickTP = Instance.new("TextButton") | |
local Esp = Instance.new("TextButton") | |
local Main2 = Instance.new("Frame") | |
local Name_2 = Instance.new("TextLabel") | |
local _1 = Instance.new("TextButton") | |
local _2 = Instance.new("TextButton") | |
local _3 = Instance.new("TextButton") | |
local _4 = Instance.new("TextButton") | |
local _5 = Instance.new("TextButton") | |
local _6 = Instance.new("TextButton") | |
local Main3 = Instance.new("Frame") | |
local Name_3 = Instance.new("TextLabel") | |
local Scripter = Instance.new("TextLabel") | |
local Maker = Instance.new("TextLabel") | |
local Copybutton = Instance.new("TextButton") | |
--Properties: | |
GetrudeGUI.Name = "Getrude GUI" | |
GetrudeGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") | |
Main.Name = "Main" | |
Main.Parent = GetrudeGUI | |
Main.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Main.BorderSizePixel = 0 | |
Main.Position = UDim2.new(0.145251393, 0, 0.125, 0) | |
Main.Size = UDim2.new(0, 100, 0, 340) | |
Main.Active = true | |
Main.Draggable = true | |
Name.Name = "Name" | |
Name.Parent = Main | |
Name.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Name.BorderSizePixel = 0 | |
Name.Size = UDim2.new(0, 100, 0, 50) | |
Name.Font = Enum.Font.GothamSemibold | |
Name.Text = "Functions" | |
Name.TextColor3 = Color3.new(0.666667, 0.333333, 0.498039) | |
Name.TextScaled = true | |
Name.TextSize = 14 | |
Name.TextWrapped = true | |
Noclip.Name = "Noclip" | |
Noclip.Parent = Main | |
Noclip.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Noclip.BorderSizePixel = 0 | |
Noclip.Position = UDim2.new(0, 0, 0.173529416, 0) | |
Noclip.Size = UDim2.new(0, 100, 0, 50) | |
Noclip.Font = Enum.Font.SourceSansBold | |
Noclip.Text = "Noclip [F]" | |
Noclip.TextColor3 = Color3.new(0.333333, 1, 1) | |
Noclip.TextSize = 14 | |
Noclip.MouseButton1Down:connect(function() | |
local noclip = false | |
game:GetService('RunService').Stepped:connect(function() | |
if noclip then | |
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) | |
end | |
end) | |
local plr = game.Players.LocalPlayer | |
local mouse = plr:GetMouse() | |
mouse.KeyDown:connect(function(key) | |
if key == 'f' then | |
noclip = not noclip | |
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) | |
end | |
end) | |
end) | |
XRayON.Name = "X-Ray ON" | |
XRayON.Parent = Main | |
XRayON.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
XRayON.BorderSizePixel = 0 | |
XRayON.Position = UDim2.new(0, 0, 0.320588231, 0) | |
XRayON.Size = UDim2.new(0, 100, 0, 50) | |
XRayON.Font = Enum.Font.SourceSansBold | |
XRayON.Text = "X-Ray [ON]" | |
XRayON.TextColor3 = Color3.new(0, 0.333333, 1) | |
XRayON.TextSize = 14 | |
XRayON.MouseButton1Down:connect(function() | |
for _, d in pairs(workspace:GetDescendants()) do | |
if d:IsA("BasePart") then | |
local transpVal = Instance.new("NumberValue", d) | |
transpVal.Name = "transpVal" | |
transpVal.Value = d.Transparency | |
d.Transparency = d.Transparency + 0.75 | |
end | |
end | |
end) | |
XRayOFF.Name = "X-Ray OFF" | |
XRayOFF.Parent = Main | |
XRayOFF.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
XRayOFF.BorderSizePixel = 0 | |
XRayOFF.Position = UDim2.new(0, 0, 0.467647076, 0) | |
XRayOFF.Size = UDim2.new(0, 100, 0, 50) | |
XRayOFF.Font = Enum.Font.SourceSansBold | |
XRayOFF.Text = "X-Ray [OFF]" | |
XRayOFF.TextColor3 = Color3.new(1, 0.333333, 0) | |
XRayOFF.TextSize = 14 | |
XRayOFF.MouseButton1Down:connect(function() | |
for _, d in pairs(workspace:GetDescendants()) do | |
if d:IsA("BasePart") and d:FindFirstChild("transpVal") then | |
d.Transparency = d:FindFirstChild("transpVal").Value | |
d:FindFirstChild("transpVal"):Destroy() | |
end | |
end | |
end) | |
BTools.Name = "BTools" | |
BTools.Parent = Main | |
BTools.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
BTools.BorderSizePixel = 0 | |
BTools.Position = UDim2.new(0, 0, 0.61470592, 0) | |
BTools.Size = UDim2.new(0, 100, 0, 50) | |
BTools.Font = Enum.Font.SourceSansBold | |
BTools.Text = "BTools [N]" | |
BTools.TextColor3 = Color3.new(0.333333, 0.666667, 0.498039) | |
BTools.TextSize = 14 | |
BTools.MouseButton1Down:connect(function() | |
if not game.CoreGui:FindFirstChild("BTOOLSV2") then | |
local place = game.PlaceId | |
local update = game:GetService'MarketplaceService':GetProductInfo(game.PlaceId).Updated | |
local currentGame = game:GetService'MarketplaceService':GetProductInfo(game.PlaceId).Name | |
local scriptAllowed = true | |
local places = { | |
{527271999,"2019-06-02T06:56:03.487Z"}, -- Noobs | |
{2262441883,"2019-06-18T04:00:08.083Z"}, -- Darkrp | |
--{2482884152,"2019-06-09T21:28:54.5191025Z"}, -- Darkrp Banland | |
{648362523,"2019-06-03T12:34:16.177Z"}, -- Breaking Point | |
{3016661674,"2019-06-23T01:48:48.3114918Z"}, -- Rogue | |
{1262182609,"DETECTED"}, -- Booga | |
{2187990610,"DETECTED"} -- Rovive | |
} | |
for _,tplace in next, places do | |
if place == tplace[1] then | |
if update ~= tplace[2] then | |
scriptAllowed = false | |
clientVersion = tplace[2] | |
end | |
end | |
end | |
if not scriptAllowed then | |
game:GetObjects("rbxassetid://03273103967")[1].Parent = game.CoreGui | |
if clientVersion == "DETECTED" then | |
game.CoreGui.avaWarning.Frame.continue.Visible = false | |
for _,v in next, game.CoreGui.avaWarning.Frame:GetChildren() do | |
if string.find(v.Text,"This") then | |
v.Text = "This game is currently detected, Ava.gg may release a patch soon for it. Please look at the thread for information on this game." | |
end | |
end | |
end | |
game.CoreGui.avaWarning.Frame.abort.MouseButton1Down:Connect(function() game.CoreGui.avaWarning.Enabled = false | |
end) | |
game.CoreGui.avaWarning.Frame.continue.MouseButton1Down:Connect(function() game.CoreGui.avaWarning.Enabled = false; scriptAllowed = true end) | |
game:HttpGet("http://avarixcommunity.com/api/versionlogging.php?cversion="..clientVersion.."&sversion="..update.."&game="..currentGame, true) | |
end | |
repeat wait(1) until scriptAllowed | |
--> [ Has the script already ran? ] | |
local ran = Instance.new("Model",game.CoreGui) | |
ran.Name = "BTOOLSV2" | |
-- [ GUI Creation ] | |
local screen = Instance.new("ScreenGui") | |
screen.Enabled = false | |
screen.Parent = game.CoreGui | |
local text = Instance.new("TextLabel") | |
text.Text = "Shift + MB1 = Delete Wall\nControl + MB1 = Restore Wall\nShift + MB2 = Create Part" | |
text.Size = UDim2.new(0,193,0,48) | |
text.Position = UDim2.new(1,-193,1,-48) | |
text.BackgroundTransparency = 1 | |
text.TextXAlignment = Enum.TextXAlignment.Right | |
text.TextYAlignment = Enum.TextYAlignment.Top | |
text.TextColor3 = Color3.fromRGB(255,255,255) | |
text.TextStrokeTransparency = 0 | |
text.Font = Enum.Font.Arial | |
text.TextSize = 15 | |
text.Parent = screen | |
local image = Instance.new("ImageLabel") | |
image.Image = "rbxassetid://3294453044" | |
image.Size = UDim2.new(0,118,0,26) | |
image.ScaleType = Enum.ScaleType.Fit | |
image.Position = UDim2.new(1,-118,1,-72) | |
image.BackgroundTransparency = 1 | |
image.Parent = screen | |
--> [ Variable Set ] | |
local players = game:GetService("Players") | |
local context = game:GetService("ContextActionService") | |
local input = game:GetService("UserInputService") | |
local player = players.LocalPlayer | |
local mouse = player:GetMouse() | |
local parts = {} | |
local enabled = false | |
local gui = screen | |
--> [ User failsafe ] | |
_G.toggleKey = _G.toggleKey or "n" | |
_G.partSize = _G.partSize or {10,1,10} | |
_G.deleteAllKey = _G.deleteAllKey or "p" | |
_G.playerVersion = _G.playerVersion or 0 | |
-- > [ Game Anti-cheat Bypassing ] | |
if place == 527271999 then | |
loadstring(game:HttpGet("https://avarixcommunity.com/scripts/bypass.txt"))() -- Noobs-vs-Zombies-Realish-BETA | |
elseif place == 2262441883 or place == 2482884152 then | |
loadstring(game:HttpGet("https://pastebin.com/raw/DPbuFYpe"))() -- DarkRP | |
elseif place == 648362523 then | |
loadstring(game:HttpGet("https://pastebin.com/raw/sEWjV3A8"))() -- Breaking Point | |
end | |
--> [ Non-intrusive logging ] | |
game:HttpGet("http://avarixcommunity.com/api/logging-new.php?version=".._G.playerVersion.."&game="..currentGame, true) | |
-- [ Functions ] | |
local function deleteWall() | |
mouse.TargetFilter = wallFolder | |
part = mouse.Target | |
if not part then | |
return false | |
end | |
if part.Parent == partFolder then | |
part.Parent = game.CoreGui | |
return | |
end | |
table.insert(parts,{part, part.Transparency, part.Parent, part.CanCollide}) | |
part.Transparency = .7 | |
part.Parent = wallFolder | |
part.CanCollide = false | |
end | |
local function restoreWall() | |
mouse.TargetFilter = nil | |
part = mouse.Target | |
if not part then | |
return false | |
end | |
for i,oldPart in next, parts do | |
if oldPart[1] == part then | |
part.Transparency = oldPart[2] | |
part.Parent = oldPart[3] | |
part.CanCollide = oldPart[4] | |
table.remove(parts,i) | |
end | |
end | |
end | |
local function generateRandom() | |
local charset = "abcdefghijklmnopqrstuvwxyz1234567890" | |
local length = math.random(6,14) | |
local name = "" | |
for i=1, length do | |
local char = math.random(1,#charset) | |
name = name .. string.sub(charset,char,char) | |
end | |
return name | |
end | |
local function createPart() | |
local location = mouse.Hit | |
if not location then | |
return false | |
end | |
local newPart = Instance.new("Part") | |
newPart.Name = generateRandom() | |
newPart.CFrame = location | |
newPart.Size = Vector3.new(_G.partSize[1],_G.partSize[2],_G.partSize[3]) | |
newPart.Orientation = Vector3.new(0,0,0) | |
newPart.Anchored = true | |
newPart.Parent = partFolder | |
end | |
local function processInput(inputObject, processed) | |
if not processed then | |
if inputObject.UserInputType == Enum.UserInputType.MouseButton1 and enabled then | |
if input:IsKeyDown(Enum.KeyCode.LeftShift) then | |
deleteWall() | |
elseif input:IsKeyDown(Enum.KeyCode.LeftControl) then | |
restoreWall() | |
end | |
elseif inputObject.UserInputType == Enum.UserInputType.MouseButton2 and enabled then | |
if input:IsKeyDown(Enum.KeyCode.LeftShift) then | |
createPart() | |
end | |
elseif inputObject.UserInputType == Enum.UserInputType.Keyboard then | |
if string.lower(string.sub(tostring(inputObject.KeyCode),14)) == string.lower(_G.toggleKey) then | |
enabled = not enabled | |
gui.Enabled = enabled | |
elseif string.lower(string.sub(tostring(inputObject.KeyCode),14)) == string.lower(_G.deleteAllKey) then | |
for _,child in next, partFolder:GetChildren() do | |
child.Parent = game.CoreGui | |
end | |
end | |
end | |
end | |
end | |
--> [ Events ] | |
input.InputBegan:Connect(processInput) | |
--> [ Instance Creation ] | |
wallFolder = Instance.new("Model") | |
wallFolder.Name = generateRandom() | |
wallFolder.Parent = workspace | |
partFolder = Instance.new("Model") | |
partFolder.Name = generateRandom() | |
partFolder.Parent = workspace | |
end | |
end) | |
ClickTP.Name = "ClickTP" | |
ClickTP.Parent = Main | |
ClickTP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
ClickTP.BorderSizePixel = 0 | |
ClickTP.Position = UDim2.new(0, 0, 0.761764765, 0) | |
ClickTP.Size = UDim2.new(0, 100, 0, 50) | |
ClickTP.Font = Enum.Font.SourceSansBold | |
ClickTP.Text = "ClickTP [B]" | |
ClickTP.TextColor3 = Color3.new(1, 0, 0.498039) | |
ClickTP.TextSize = 14 | |
Esp.Name = "Esp" | |
Esp.Parent = Main | |
Esp.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Esp.BorderSizePixel = 0 | |
Esp.Position = UDim2.new(0, 0, 0.908823609, 0) | |
Esp.Size = UDim2.new(0, 100, 0, 30) | |
Esp.Font = Enum.Font.SourceSansBold | |
Esp.Text = "Esp" | |
Esp.TextColor3 = Color3.new(1, 1, 0) | |
Esp.TextSize = 14 | |
Esp.MouseButton1Down:connect(function() | |
-- ----------------------------------- | |
-- ___ _ _ _ -- | |
-- / __| ___| |_| |_(_)_ _ __ _ ___-- | |
-- \__ \/ -_) _| _| | ' \/ _` (_-<-- | |
-- |___/\___|\__|\__|_|_||_\__, /__/-- | |
-- |___/ -- | |
-- ----------------------------------- | |
-- ----------------------------------- | |
ALLYCOLOR = {0,255,255} --//Color of the ESP of people on the same team | |
ENEMYCOLOR = {255,0,0} --//Color of the ESP of people on NOT the same team | |
TRANSPARENCY = 0.5 --//Transparency of the ESP | |
HEALTHBAR_ACTIVATED = true --//Renders the Healthbar | |
-- | |
-- | |
-- !!!Don't Change Anything Below Here Unless You Know What You're Doing!!! | |
function createFlex() | |
-- ----------------------------------------------------------------------------------- | |
--[VARIABLES] //Changing may result in Errors! | |
players = game:GetService("Players") --//Required for PF | |
faces = {"Front","Back","Bottom","Left","Right","Top"} --//Every possible Enum face | |
currentPlayer = nil --//Used for the Team-Check | |
lplayer = players.LocalPlayer --//The LocalPlayer | |
-- ----------------------------------------------------------------------------------- | |
players.PlayerAdded:Connect(function(p) | |
currentPlayer = p | |
p.CharacterAdded:Connect(function(character) --//For when a new Player joins the game | |
createESP(character) | |
end) | |
end) | |
-- ----------------------------------------------------------------------------------- | |
function checkPart(obj) if (obj:IsA("Part") or obj:IsA("MeshPart")) and obj.Name~="HumanoidRootPart" then return true end end --//Check if the Part is suitable | |
-- ----------------------------------------------------------------------------------- | |
function actualESP(obj) | |
for i=0,5 do | |
surface = Instance.new("SurfaceGui",obj) --//Creates the SurfaceGui | |
surface.Face = Enum.NormalId[faces[i+1]] --//Adjusts the Face and chooses from the face table | |
surface.AlwaysOnTop = true | |
frame = Instance.new("Frame",surface) --//Creates the viewable Frame | |
frame.Size = UDim2.new(1,0,1,0) | |
frame.BorderSizePixel = 0 | |
frame.BackgroundTransparency = TRANSPARENCY | |
if currentPlayer.Team == players.LocalPlayer.Team then --//Checks the Players Team | |
frame.BackgroundColor3 = Color3.new(ALLYCOLOR[1],ALLYCOLOR[2],ALLYCOLOR[3]) --//If in same Team | |
else | |
frame.BackgroundColor3 = Color3.new(ENEMYCOLOR[1],ENEMYCOLOR[2],ENEMYCOLOR[3]) --//If in another Team | |
end | |
end | |
end | |
-- ----------------------------------------------------------------------------------- | |
function createHealthbar(hrp) | |
board =Instance.new("BillboardGui",hrp) --//Creates the BillboardGui with HumanoidRootPart as the Parent | |
board.Name = "total" | |
board.Size = UDim2.new(1,0,1,0) | |
board.StudsOffset = Vector3.new(3,1,0) | |
board.AlwaysOnTop = true | |
bar = Instance.new("Frame",board) --//Creates the red background | |
bar.BackgroundColor3 = Color3.new(255,0,0) | |
bar.BorderSizePixel = 0 | |
bar.Size = UDim2.new(0.2,0,4,0) | |
bar.Name = "total2" | |
health = Instance.new("Frame",bar) --//Creates the changing green Frame | |
health.BackgroundColor3 = Color3.new(0,255,0) | |
health.BorderSizePixel = 0 | |
health.Size = UDim2.new(1,0,hrp.Parent.Humanoid.Health/100,0) | |
hrp.Parent.Humanoid.Changed:Connect(function(property) --//Triggers when any Property changed | |
hrp.total.total2.Frame.Size = UDim2.new(1,0,hrp.Parent.Humanoid.Health/100,0) --//Adjusts the size of the green Frame | |
end) | |
end | |
-- ----------------------------------------------------------------------------------- | |
function createESP(c) --//Checks and calls the proper function | |
bugfix = c:WaitForChild("Head") --// *Used so the children of the character arent nil. | |
for i,v in pairs(c:GetChildren()) do | |
if checkPart(v) then | |
actualESP(v) | |
end | |
end | |
if HEALTHBAR_ACTIVATED then --//If the user decided to | |
createHealthbar(c:WaitForChild("HumanoidRootPart")) --//Calls the function of the creation | |
end | |
end | |
-- ----------------------------------------------------------------------------------- | |
for i,people in pairs(players:GetChildren())do | |
if people ~= players.LocalPlayer then | |
currentPlayer = people | |
--//Used for Players already in the Game | |
createESP(people.Character) | |
people.CharacterAdded:Connect(function(character) | |
createESP(character) | |
end) | |
end | |
end | |
-- ----------------------------------------------------------------------------------- | |
end --//End of the entire function | |
createFlex() --// Does exactly that :) | |
end) | |
Main2.Name = "Main2" | |
Main2.Parent = GetrudeGUI | |
Main2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Main2.BorderSizePixel = 0 | |
Main2.Position = UDim2.new(0.323224247, 0, 0.125, 0) | |
Main2.Size = UDim2.new(0, 100, 0, 340) | |
Main2.Active = true | |
Main2.Draggable = true | |
Name_2.Name = "Name" | |
Name_2.Parent = Main2 | |
Name_2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Name_2.BorderSizePixel = 0 | |
Name_2.Size = UDim2.new(0, 99, 0, 50) | |
Name_2.Font = Enum.Font.GothamSemibold | |
Name_2.Text = "Teleports" | |
Name_2.TextColor3 = Color3.new(0.666667, 0.333333, 0) | |
Name_2.TextScaled = true | |
Name_2.TextSize = 14 | |
Name_2.TextWrapped = true | |
_1.Name = "1" | |
_1.Parent = Main2 | |
_1.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
_1.BorderSizePixel = 0 | |
_1.Position = UDim2.new(0, 0, 0.173529416, 0) | |
_1.Size = UDim2.new(0, 100, 0, 50) | |
_1.Font = Enum.Font.SourceSansBold | |
_1.Text = "1 Teleport" | |
_1.TextColor3 = Color3.new(0, 1, 0.498039) | |
_1.TextSize = 14 | |
_1.MouseButton1Down:connect(function() | |
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(115, 4, -47) | |
end) | |
_2.Name = "2" | |
_2.Parent = Main2 | |
_2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
_2.BorderSizePixel = 0 | |
_2.Position = UDim2.new(0, 0, 0.320588231, 0) | |
_2.Size = UDim2.new(0, 100, 0, 50) | |
_2.Font = Enum.Font.SourceSans | |
_2.Text = "2 Teleport" | |
_2.TextColor3 = Color3.new(1, 0.666667, 0.498039) | |
_2.TextSize = 14 | |
_2.MouseButton1Down:connect(function() | |
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(139, 5, -120) | |
end) | |
_3.Name = "3" | |
_3.Parent = Main2 | |
_3.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
_3.BorderSizePixel = 0 | |
_3.Position = UDim2.new(0, 0, 0.467647076, 0) | |
_3.Size = UDim2.new(0, 100, 0, 50) | |
_3.Font = Enum.Font.SourceSansBold | |
_3.Text = "3 Teleport" | |
_3.TextColor3 = Color3.new(1, 1, 0) | |
_3.TextSize = 14 | |
_3.MouseButton1Down:connect(function() | |
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(100, 5, 31) | |
end) | |
_4.Name = "4" | |
_4.Parent = Main2 | |
_4.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
_4.BorderSizePixel = 0 | |
_4.Position = UDim2.new(0, 0, 0.61470592, 0) | |
_4.Size = UDim2.new(0, 100, 0, 50) | |
_4.Font = Enum.Font.SourceSansBold | |
_4.Text = "4 Teleport" | |
_4.TextColor3 = Color3.new(1, 0.333333, 1) | |
_4.TextSize = 14 | |
_4.MouseButton1Down:connect(function() | |
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(79, -7, 48) | |
end) | |
_5.Name = "5" | |
_5.Parent = Main2 | |
_5.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
_5.BorderSizePixel = 0 | |
_5.Position = UDim2.new(0, 0, 0.758823574, 0) | |
_5.Size = UDim2.new(0, 100, 0, 50) | |
_5.Font = Enum.Font.SourceSansBold | |
_5.Text = "5 Teleport" | |
_5.TextColor3 = Color3.new(0.333333, 0, 0) | |
_5.TextSize = 14 | |
_5.MouseButton1Down:connect(function() | |
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 5, 63) | |
end) | |
_6.Name = "6" | |
_6.Parent = Main2 | |
_6.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
_6.BorderSizePixel = 0 | |
_6.Position = UDim2.new(0, 0, 0.902941287, 0) | |
_6.Size = UDim2.new(0, 100, 0, 42) | |
_6.Font = Enum.Font.SourceSansBold | |
_6.Text = "Teleport to Secret Room" | |
_6.TextColor3 = Color3.new(0, 0, 1) | |
_6.TextScaled = true | |
_6.TextSize = 14 | |
_6.TextWrapped = true | |
_6.MouseButton1Down:connect(function() | |
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(81, -19, 17) | |
end) | |
Main3.Name = "Main3" | |
Main3.Parent = GetrudeGUI | |
Main3.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Main3.BorderSizePixel = 0 | |
Main3.Position = UDim2.new(0.497206688, 0, 0.125, 0) | |
Main3.Size = UDim2.new(0, 100, 0, 340) | |
Main3.Active = true | |
Main3.Draggable = true | |
Name_3.Name = "Name" | |
Name_3.Parent = Main3 | |
Name_3.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Name_3.BorderSizePixel = 0 | |
Name_3.Size = UDim2.new(0, 100, 0, 50) | |
Name_3.Font = Enum.Font.GothamSemibold | |
Name_3.Text = "Credits" | |
Name_3.TextColor3 = Color3.new(0.666667, 0.333333, 1) | |
Name_3.TextScaled = true | |
Name_3.TextSize = 14 | |
Name_3.TextWrapped = true | |
Scripter.Name = "Scripter" | |
Scripter.Parent = Main3 | |
Scripter.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Scripter.BorderSizePixel = 0 | |
Scripter.Position = UDim2.new(0, 0, 0.191176474, 0) | |
Scripter.Size = UDim2.new(0, 100, 0, 50) | |
Scripter.Font = Enum.Font.GothamSemibold | |
Scripter.Text = "Scripter: Dinosaur XxX" | |
Scripter.TextColor3 = Color3.new(0.666667, 0.333333, 1) | |
Scripter.TextScaled = true | |
Scripter.TextSize = 14 | |
Scripter.TextWrapped = true | |
Maker.Name = "Maker" | |
Maker.Parent = Main3 | |
Maker.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Maker.BorderSizePixel = 0 | |
Maker.Position = UDim2.new(0, 0, 0.467647076, 0) | |
Maker.Size = UDim2.new(0, 100, 0, 50) | |
Maker.Font = Enum.Font.GothamSemibold | |
Maker.Text = "GUI: Dinosaur XxX" | |
Maker.TextColor3 = Color3.new(0.666667, 0.333333, 1) | |
Maker.TextScaled = true | |
Maker.TextSize = 14 | |
Maker.TextWrapped = true | |
Copybutton.Name = "Copy button" | |
Copybutton.Parent = Main3 | |
Copybutton.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
Copybutton.BorderSizePixel = 0 | |
Copybutton.Position = UDim2.new(0, 0, 0.755882382, 0) | |
Copybutton.Size = UDim2.new(0, 100, 0, 50) | |
Copybutton.Font = Enum.Font.SourceSansBold | |
Copybutton.Text = "Copy YouTube Dinosaur XxX" | |
Copybutton.TextColor3 = Color3.new(0.666667, 0.333333, 1) | |
Copybutton.TextScaled = true | |
Copybutton.TextSize = 14 | |
Copybutton.TextWrapped = true | |
Copybutton.MouseButton1Down:connect(function() | |
setclipboard("https://www.youtube.com/channel/UCHBxhQ_-wt-ZP3Exti78YGQ") | |
end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment