Roblox Script - Guess The Pet Simulator X Pets | See Name and Skip Level


Features:
  • See Names
  • Skip  Level
Script:
-- Gui to Lua
-- Version: 3.2

local ScreenGui = Instance.new("ScreenGui")
local SeeButton = Instance.new("TextButton")
local UICorner = Instance.new("UICorner")

--Properties:
ScreenGui.Name = "CrackedHUB"
ScreenGui.Parent = game.CoreGui
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling

SeeButton.Name = "SeeButton"
SeeButton.Parent = ScreenGui
SeeButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SeeButton.Position = UDim2.new(0.431022644, 0, 0.922222257, 0)
SeeButton.Size = UDim2.new(0, 200, 0, 50)
SeeButton.Font = Enum.Font.Unknown
SeeButton.Text = "Touched To See Name"
SeeButton.TextColor3 = Color3.fromRGB(0, 0, 0)
SeeButton.TextScaled = true
SeeButton.TextSize = 14.000
SeeButton.TextWrapped = true
SeeButton.MouseButton2Up:Connect(function()
game:GetService("ReplicatedStorage").RemoteEvents.FreeSkip:FireServer()

end)
SeeButton.MouseButton1Up:Connect(function()
for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
for falsee,namee in pairs(v:GetChildren()) do
if namee.Name == "Picture" then
game.Players.LocalPlayer.Character.Humanoid.Touched:Connect(function(hit)
if hit.Name == "Picture" then 
SeeButton.Text = hit.Parent.Name
end
end)
end
end
end
end)

UICorner.Parent = SeeButton
Previous Post Next Post