#Urgent!! need help!
1 messages · Page 1 of 1 (latest)
** You are now Level 1! **
We will NOT help you
do you have any code we could see?
Help = create script
People come here and ask for scripts tho
shes having problems with their code
No
you should of asked to see the code
God told me that she didn't make a thing
you can still help without writing code
Sure
no i just wanted help and understand how to work and get better, programation is hard and is alot harder when u dont have any help but ty for the words u gave
Send code
I mean if your starting from not much experience your 100% jumping the gun
I can help if you send a script but I'll offer advice
Instead of looking at full pictures
A tycoon
Break it Into solvable steps
- how do I save money to players
- how do I teleport players
- how do I assign a tycoon to a player on join
sure let me just get the code
local TeleportPlaceId = 106539451382990
-- Cria a interface
local screenGui = Instance.new("ScreenGui")
screenGui.Name = "TeleportRPGWorldUI"
screenGui.ResetOnSpawn = false
local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 200, 0, 50)
button.Position = UDim2.new(0.5, -100, 0.8, 0)
button.Text = "Teleportar para RPG World"
button.BackgroundColor3 = Color3.fromRGB(50, 150, 255)
button.TextColor3 = Color3.fromRGB(255,255,255)
button.Font = Enum.Font.SourceSansBold
button.TextSize = 24
button.Parent = screenGui
screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
button.MouseButton1Click:Connect(function()
local TeleportService = game:GetService("TeleportService")
TeleportService:Teleport(TeleportPlaceId)
end)
@sterile forge
Your welcome good luck moving forward