Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- v30.RaceV4Upgrader = {
- Title = "Red Head Essence",
- Get = function(p110)
- if not game.Players.LocalPlayer.Character:FindFirstChild("RaceTransformed") then
- return {
- Text = { "You have yet to achieve greatness." }
- };
- end;
- local v230 = game.ReplicatedStorage.Remotes.CommF_:InvokeServer("UpgradeRace", "Check");
- if v230 == 1 then
- return {
- Text = { "So you've awakened that old clock.", "That clock holds an ancient energy, with it you can use a fragment of your race's primeval hero's powers.", "You can awaken a new form by gathering this energy, though it can be quite difficult.", "There may be a way to gather energy quicker, but you need to train first." },
- Option1 = {
- Label = "Okay.",
- JumpTo = function()
- return {
- Text = { "Come back when you've trained more." }
- };
- end
- }
- };
- end;
- if v230 == 2 then
- return {
- Text = { "You've been working hard, I can tell.", "I have something you could use to improve your race energy absorption, but it will only work for your current race.", "I have no need for it, I'll sell it to you for 123123123 super deluxe bloxy bux." },
- Option1 = {
- Label = "Buy",
- JumpTo = function()
- if game.ReplicatedStorage.Remotes.CommF_:InvokeServer("UpgradeRace", "Buy") then
- return {
- Text = { "Here you go. This should fit into the clock." }
- };
- end;
- return {
- Text = { "You don't have enough." }
- };
- end
- }
- };
- end;
- if v230 == 3 then
- return {
- Text = { "You can still improve. Your energy is still unstable, making it hard to hold onto.", "I have another gear that should help." },
- Option1 = {
- Label = "Teach me.",
- JumpTo = function()
- return {
- Text = { "Come back when you've trained more." }
- };
- end
- }
- };
- end;
- if v230 == 4 then
- return {
- Text = { "You've come a long way.", "As promised, I'll sell you the last gear piece for 123123123213123 super deluxe bloxy bux." },
- Option1 = {
- Label = "Buy",
- JumpTo = function()
- if game.ReplicatedStorage.Remotes.CommF_:InvokeServer("UpgradeRace", "Buy") then
- return {
- Text = { "Here you go. This should fit into the clock." }
- };
- end;
- return {
- Text = { "You don't have enough." }
- };
- end
- }
- };
- end;
- if v230 == 5 then
- return {
- Text = { "It seems you've made this power your own. I've done all I can for you." }
- };
- end;
- return {
- Text = { "You have yet to achieve greatness." }
- };
- end
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement